forked from DGNum/colmena
f253e6eb18
We now follow the <https://bixense.com/clicolors> standard.
14 lines
169 B
Rust
14 lines
169 B
Rust
#![deny(unused_must_use)]
|
|
|
|
mod nix;
|
|
mod cli;
|
|
mod command;
|
|
mod progress;
|
|
mod job;
|
|
mod troubleshooter;
|
|
mod util;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
cli::run().await;
|
|
}
|