2025-06-19 18:58:30 +08:00
|
|
|
mod ui;
|
|
|
|
|
mod utils;
|
2025-06-23 21:52:45 +08:00
|
|
|
mod widgets;
|
|
|
|
|
|
2025-06-19 18:58:30 +08:00
|
|
|
fn main() {
|
|
|
|
|
tracing_subscriber::fmt::init();
|
2025-06-23 22:14:00 +08:00
|
|
|
unsafe {
|
|
|
|
|
use utils::winsparkle::*;
|
|
|
|
|
win_sparkle_set_appcast_url(
|
|
|
|
|
"https://dl.wuembed.com/hardware_tk/appcast.xml\0".as_ptr() as *const i8
|
|
|
|
|
);
|
|
|
|
|
win_sparkle_init();
|
|
|
|
|
}
|
2025-06-20 11:03:06 +08:00
|
|
|
ui::main_window::main_window();
|
2025-06-19 18:58:30 +08:00
|
|
|
}
|