aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/main.rs')
-rw-r--r--crates/shirabe/src/main.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/shirabe/src/main.rs b/crates/shirabe/src/main.rs
index 0672e51..597c30a 100644
--- a/crates/shirabe/src/main.rs
+++ b/crates/shirabe/src/main.rs
@@ -1,3 +1,8 @@
+use shirabe::cli;
+
fn main() {
- println!("Hello, World!");
+ 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;
}