15 lines
222 B
Rust
15 lines
222 B
Rust
|
|
// SPDX-License-Identifier: MPL-2.0-only
|
||
|
|
mod app;
|
||
|
|
mod config;
|
||
|
|
mod localize;
|
||
|
|
mod wayland_handler;
|
||
|
|
mod wayland_subscription;
|
||
|
|
|
||
|
|
use localize::localize;
|
||
|
|
|
||
|
|
pub fn run() -> cosmic::iced::Result {
|
||
|
|
localize();
|
||
|
|
|
||
|
|
app::run()
|
||
|
|
}
|