mirror of
https://github.com/harivansh-afk/deskctl.git
synced 2026-04-15 07:04:46 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
mod backend;
|
|
mod cli;
|
|
mod core;
|
|
mod daemon;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
if std::env::var("DESKCTL_DAEMON").is_ok() {
|
|
return daemon::run();
|
|
}
|
|
cli::run()
|
|
}
|