Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions src/cmd_drake.rs

This file was deleted.

4 changes: 0 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ pub mod cmd_auth;
pub mod cmd_completion;
/// The config command.
pub mod cmd_config;
/// The drake command.
pub mod cmd_drake;
/// The file command.
pub mod cmd_file;
/// The generate command.
Expand Down Expand Up @@ -151,7 +149,6 @@ enum SubCommand {
Auth(cmd_auth::CmdAuth),
Completion(cmd_completion::CmdCompletion),
Config(cmd_config::CmdConfig),
Drake(cmd_drake::CmdDrake),
File(cmd_file::CmdFile),
Generate(cmd_generate::CmdGenerate),
Kcl(cmd_kcl::CmdKcl),
Expand Down Expand Up @@ -287,7 +284,6 @@ async fn do_main(mut args: Vec<String>, ctx: &mut crate::context::Context<'_>) -
SubCommand::Auth(cmd) => run_cmd(&cmd, ctx).await,
SubCommand::Completion(cmd) => run_cmd(&cmd, ctx).await,
SubCommand::Config(cmd) => run_cmd(&cmd, ctx).await,
SubCommand::Drake(cmd) => run_cmd(&cmd, ctx).await,
SubCommand::File(cmd) => run_cmd(&cmd, ctx).await,
SubCommand::Generate(cmd) => run_cmd(&cmd, ctx).await,
SubCommand::Kcl(cmd) => run_cmd(&cmd, ctx).await,
Expand Down
Loading