colmena/src/main.rs
Zhaofeng Li 7d0a6eed90 Apply quit::main to main function
This makes `quit::with_code` actually work with the correct exit code.

Fixes #111.
2022-07-17 14:42:34 -07:00

16 lines
194 B
Rust

#![deny(unused_must_use)]
mod error;
mod nix;
mod cli;
mod command;
mod progress;
mod job;
mod troubleshooter;
mod util;
#[tokio::main]
#[quit::main]
async fn main() {
cli::run().await;
}