summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-04-01 23:23:03 -0400
committerMatan Kushner <hello@matchai.me>2019-04-01 23:23:03 -0400
commitca3f439012f3d1125e1863d383bb155f9f1f59d5 (patch)
treed2e442009359ca1b5411aaf9287744aeeeb59b82 /src
Initial commit
Diffstat (limited to 'src')
-rw-r--r--src/main.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 000000000..aa0f7cf35
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,12 @@
+#[macro_use]
+extern crate clap;
+use clap::App;
+
+fn main() {
+ let matches = App::new("Starship")
+ .about("The cross-platform prompt for astronauts.")
+ // pull the version number from Cargo.toml
+ .version(crate_version!())
+ .get_matches();
+
+}