From 75e5e5f857b50a0eedbde84bcb10035479fc4571 Mon Sep 17 00:00:00 2001 From: Melody Horn / boringcactus Date: Sun, 13 Jun 2021 19:35:58 -0600 Subject: start testing tutorial workflow --- src/bin/tosin-admin.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/bin/tosin-admin.rs (limited to 'src') 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, + } +} + +fn main() { + let opts = Opt::from_args(); + dbg!(opts); +} -- cgit v1.2.3