razer-battery-report/src/main.rs

16 lines
250 B
Rust
Raw Normal View History

2024-09-03 22:46:04 +00:00
#![windows_subsystem = "windows"]
use tray::TrayApp;
2024-08-27 18:08:03 +00:00
mod controller;
mod devices;
mod manager;
2024-09-03 22:46:04 +00:00
mod tray;
2024-08-27 18:08:03 +00:00
fn main() {
std::env::set_var("RUST_LOG", "trace");
pretty_env_logger::init();
2024-09-03 22:46:04 +00:00
let checker = TrayApp::new();
2024-08-27 18:08:03 +00:00
checker.run();
}