mirror of
https://github.com/dathere/qsv-easy-windows-installer.git
synced 2025-12-27 03:27:00 +00:00
6 lines
193 B
Rust
6 lines
193 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
qsv_easy_installer_lib::run()
|
|
}
|