blob: 597c30a4ec7f1bcd19e7de5b829d4fc4e04d3805 (
plain)
1
2
3
4
5
6
7
8
|
use shirabe::cli;
fn main() {
let parsed = cli::cli().run();
// TODO(phase-b): bridge the parsed CLI into Symfony Console's Input and
// dispatch through Application::run. For now we only parse.
let _ = parsed;
}
|