cosmic-applets/applets/cosmic-applet-audio/src/main.rs

14 lines
212 B
Rust
Raw Normal View History

2022-03-07 15:04:14 -05:00
// SPDX-License-Identifier: LGPL-3.0-or-later
#[macro_use]
extern crate relm4;
2022-03-07 17:37:40 -05:00
mod app;
2022-03-28 15:25:26 -04:00
mod icons;
2022-03-07 17:37:40 -05:00
2022-03-10 12:40:41 -05:00
use relm4::RelmApp;
2022-03-07 15:04:14 -05:00
2022-03-07 11:15:20 -05:00
fn main() {
2022-03-10 12:40:41 -05:00
RelmApp::<app::App>::new("com.system76.cosmic.applets.audio").run(());
2022-03-07 11:15:20 -05:00
}