7 lines
176 B
Rust
7 lines
176 B
Rust
// Prevents additional console window on Windows in release.
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
chat_app_desktop_lib::run();
|
|
}
|