Skip to main content

plan_tooling/
lib.rs

1mod batches;
2mod completion;
3mod parse;
4mod repo_root;
5mod repr;
6mod scaffold;
7mod usage;
8mod validate;
9
10pub fn run() -> i32 {
11    let args: Vec<String> = std::env::args().collect();
12    usage::dispatch(&args)
13}