aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMelody Horn / boringcactus <melody@boringcactus.com>2021-06-13 19:35:58 -0600
committerMelody Horn / boringcactus <melody@boringcactus.com>2021-06-13 19:35:58 -0600
commit75e5e5f857b50a0eedbde84bcb10035479fc4571 (patch)
treef85ad816f176e244a4fdfc75b621af6170e4d7a8 /src
parent311b49a2fdd97b8b870dbaccccb55058ee0207c8 (diff)
downloadtosin-75e5e5f857b50a0eedbde84bcb10035479fc4571.tar.gz
tosin-75e5e5f857b50a0eedbde84bcb10035479fc4571.zip
start testing tutorial workflow
Diffstat (limited to 'src')
-rw-r--r--src/bin/tosin-admin.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/bin/tosin-admin.rs b/src/bin/tosin-admin.rs
new file mode 100644
index 0000000..a1f03fb
--- /dev/null
+++ b/src/bin/tosin-admin.rs
@@ -0,0 +1,14 @@
+use structopt::StructOpt;
+
+#[derive(StructOpt, Debug)]
+enum Opt {
+ /// Start a new project/site (can contain multiple apps)
+ StartProject {
+ name: Option<String>,
+ }
+}
+
+fn main() {
+ let opts = Opt::from_args();
+ dbg!(opts);
+}