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

11 lines
278 B
Rust
Raw Normal View History

const VERSION: &str = env!("CARGO_PKG_VERSION");
2023-02-08 18:38:09 -05:00
fn main() -> cosmic::iced::Result {
tracing_subscriber::fmt::init();
let _ = tracing_log::LogTracer::init();
2023-02-08 18:38:09 -05:00
tracing::info!("Starting bluetooth applet with version {VERSION}");
2023-02-08 18:38:09 -05:00
cosmic_applet_bluetooth::run()
2023-02-08 18:38:09 -05:00
}