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.
34mod cli;
56fn main() {
7use clap::Parser as _;
89let cli = cli::Cli::parse();
10 cli::init_tracing();
11 cli.command.run()
12}