Skip to main content

args_cli/
lib.rs

1// Several modules are kept on disk for later re-enable as commands ship.
2// Suppress the resulting dead-code noise crate-wide until those commands are
3// wired back in.
4// TODO: remove it
5#![allow(dead_code)]
6
7mod cli;
8mod client;
9mod command;
10mod config;
11mod util;
12
13pub use cli::{run, setup};
14pub use command::Args;