Skip to main content

blockworx/
main.rs

1//! `blockworx`: the command line over a container. The editor is the web
2//! shell; what is here reads, checks and carries over what it writes.
3
4mod cli;
5
6fn main() {
7    use clap::Parser as _;
8
9    let cli = cli::Cli::parse();
10    cli::init_tracing();
11    cli.command.run()
12}