17 lines
295 B
Rust
17 lines
295 B
Rust
// Copyright 2023 System76 <info@system76.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
mod app;
|
|
mod icon_catalog;
|
|
mod launcher_edit;
|
|
mod localize;
|
|
mod wayland_handler;
|
|
mod wayland_subscription;
|
|
|
|
use localize::localize;
|
|
|
|
pub fn run() -> cosmic::iced::Result {
|
|
localize();
|
|
|
|
app::run()
|
|
}
|