aboutsummaryrefslogtreecommitdiff
path: root/dotup_cli/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dotup_cli/src/main.rs')
-rw-r--r--dotup_cli/src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/dotup_cli/src/main.rs b/dotup_cli/src/main.rs
index fe2196e..05fa850 100644
--- a/dotup_cli/src/main.rs
+++ b/dotup_cli/src/main.rs
@@ -53,6 +53,7 @@ struct Opts {
53enum SubCommand { 53enum SubCommand {
54 Init(commands::init::Opts), 54 Init(commands::init::Opts),
55 Link(commands::link::Opts), 55 Link(commands::link::Opts),
56 Status(commands::status::Opts),
56 Unlink(commands::unlink::Opts), 57 Unlink(commands::unlink::Opts),
57 Install(commands::install::Opts), 58 Install(commands::install::Opts),
58 Uninstall(commands::uninstall::Opts), 59 Uninstall(commands::uninstall::Opts),
@@ -86,6 +87,7 @@ fn main() -> anyhow::Result<()> {
86 match opts.subcmd { 87 match opts.subcmd {
87 SubCommand::Init(opts) => commands::init::main(config, opts), 88 SubCommand::Init(opts) => commands::init::main(config, opts),
88 SubCommand::Link(opts) => commands::link::main(config, opts), 89 SubCommand::Link(opts) => commands::link::main(config, opts),
90 SubCommand::Status(opts) => commands::status::main(config, opts),
89 SubCommand::Unlink(opts) => commands::unlink::main(config, opts), 91 SubCommand::Unlink(opts) => commands::unlink::main(config, opts),
90 SubCommand::Install(opts) => commands::install::main(config, opts), 92 SubCommand::Install(opts) => commands::install::main(config, opts),
91 SubCommand::Uninstall(opts) => commands::uninstall::main(config, opts), 93 SubCommand::Uninstall(opts) => commands::uninstall::main(config, opts),