Modernize the plugin subcommand

This commit is contained in:
Lucien Greathouse
2021-05-21 13:09:07 -04:00
parent afe26b8c16
commit 7f230a8bf4
3 changed files with 37 additions and 33 deletions

View File

@@ -13,7 +13,7 @@ fn run(global: GlobalOptions, subcommand: Subcommand) -> anyhow::Result<()> {
Subcommand::Upload(upload_options) => cli::upload(upload_options)?,
Subcommand::FmtProject(subcommand) => subcommand.run()?,
Subcommand::Doc(subcommand) => subcommand.run()?,
Subcommand::Plugin(plugin_options) => cli::plugin(plugin_options)?,
Subcommand::Plugin(subcommand) => subcommand.run()?,
}
Ok(())