9 lines
223 B
Rust
9 lines
223 B
Rust
//! ZeroClaw Desktop — main entry point.
|
|
//!
|
|
//! Prevents an additional console window on Windows in release.
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
zeroclaw_desktop::run();
|
|
}
|