forked from starlight/keydisplay
9 lines
198 B
Rust
9 lines
198 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
mod config;
|
|
|
|
fn main() {
|
|
keydisplay_lib::run()
|
|
}
|