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

14 lines
367 B
Rust
Raw Normal View History

2024-05-06 15:39:04 +02:00
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
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
}