forked from DGNum/colmena
16 lines
194 B
Rust
16 lines
194 B
Rust
#![deny(unused_must_use)]
|
|
|
|
mod cli;
|
|
mod command;
|
|
mod error;
|
|
mod job;
|
|
mod nix;
|
|
mod progress;
|
|
mod troubleshooter;
|
|
mod util;
|
|
|
|
#[tokio::main]
|
|
#[quit::main]
|
|
async fn main() {
|
|
cli::run().await;
|
|
}
|