mirror of
https://github.com/Dangoware/dango-music-player.git
synced 2025-04-19 10:02:53 -05:00
9 lines
214 B
Rust
9 lines
214 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
|
|
fn main() {
|
|
colog::init();
|
|
|
|
dango_music_player_lib::run()
|
|
}
|