13 lines
197 B
Rust
13 lines
197 B
Rust
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
mod app;
|
|
mod config;
|
|
mod localize;
|
|
mod utils;
|
|
|
|
use crate::localize::localize;
|
|
|
|
pub fn run() -> cosmic::iced::Result {
|
|
localize();
|
|
app::run()
|
|
}
|