wx-cli/src/main.rs

16 lines
209 B
Rust

mod config;
mod ipc;
mod crypto;
mod scanner;
mod daemon;
mod cli;
mod attachment;
fn main() {
if std::env::var("WX_DAEMON_MODE").is_ok() {
daemon::run();
} else {
cli::run();
}
}