mirror of
https://github.com/harivansh-afk/deskctl.git
synced 2026-04-15 07:04:46 +00:00
* init openspec * clean out src, move mod into lib, remove trash * create tests * pre-commit hook * add tests to CI * update website * README, CONTRIBUTING and Makefile * openspec * archive task * fix ci order * fix integration test * fix validation tests
11 lines
200 B
Rust
11 lines
200 B
Rust
pub mod backend;
|
|
pub mod cli;
|
|
pub mod core;
|
|
pub mod daemon;
|
|
|
|
pub fn run() -> anyhow::Result<()> {
|
|
if std::env::var("DESKCTL_DAEMON").is_ok() {
|
|
return daemon::run();
|
|
}
|
|
cli::run()
|
|
}
|