mirror of
https://github.com/harivansh-afk/deskctl.git
synced 2026-04-15 08:03:43 +00:00
* specs * Stabilize deskctl runtime foundation Co-authored-by: Codex <noreply@openai.com> * opsx archive --------- Co-authored-by: Codex <noreply@openai.com>
13 lines
212 B
Rust
13 lines
212 B
Rust
mod backend;
|
|
mod cli;
|
|
mod core;
|
|
mod daemon;
|
|
#[cfg(test)]
|
|
mod test_support;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
if std::env::var("DESKCTL_DAEMON").is_ok() {
|
|
return daemon::run();
|
|
}
|
|
cli::run()
|
|
}
|