aboutsummaryrefslogtreecommitdiff
path: root/src/cli/mod.rs
diff options
context:
space:
mode:
authorMelody Horn / boringcactus <melody@boringcactus.com>2021-06-13 11:03:27 -0600
committerMelody Horn / boringcactus <melody@boringcactus.com>2021-06-13 11:03:27 -0600
commitbb7da4934d4a5f0f5184ea382a122724d27d88a4 (patch)
tree91fe511f31a2194ba3cfa853c43f7871ae685792 /src/cli/mod.rs
parent7447a411f0dc4c9eff4cfaf28c1171ca1b4be707 (diff)
downloadtosin-bb7da4934d4a5f0f5184ea382a122724d27d88a4.tar.gz
tosin-bb7da4934d4a5f0f5184ea382a122724d27d88a4.zip
power up CLI
Diffstat (limited to 'src/cli/mod.rs')
-rw-r--r--src/cli/mod.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/cli/mod.rs b/src/cli/mod.rs
new file mode 100644
index 0000000..c656c1c
--- /dev/null
+++ b/src/cli/mod.rs
@@ -0,0 +1,23 @@
+use structopt::StructOpt;
+
+use crate::{Settings, UrlMap};
+
+mod run_server;
+
+#[derive(StructOpt)]
+enum Command {
+ RunServer(run_server::RunServer),
+}
+
+impl Command {
+ fn execute(self, urls: UrlMap, settings: Settings) {
+ match self {
+ Command::RunServer(command) => command.execute(urls, settings),
+ }
+ }
+}
+
+pub fn main(urls: UrlMap, settings: Settings) {
+ let command = Command::from_args();
+ command.execute(urls, settings);
+}