Skip to content
Merged
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
3 changes: 3 additions & 0 deletions openstack_cli/src/network/v2/router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pub mod list;
pub mod remove_external_gateways;
pub mod remove_extraroutes;
pub mod remove_router_interface;
pub mod set;
pub mod show;
pub mod tag;

Expand All @@ -57,6 +58,7 @@ pub enum RouterCommands {
RemoveExternalGateway(Box<remove_external_gateways::RouterCommand>),
RemoveExtraroute(Box<remove_extraroutes::RouterCommand>),
RemoveRouterInterface(Box<remove_router_interface::RouterCommand>),
Set(set::RouterCommand),
Show(show::RouterCommand),
Tag(tag::TagCommand),
}
Expand Down Expand Up @@ -84,6 +86,7 @@ impl RouterCommand {
RouterCommands::RemoveRouterInterface(cmd) => {
cmd.take_action(parsed_args, session).await
}
RouterCommands::Set(cmd) => cmd.take_action(parsed_args, session).await,
RouterCommands::Show(cmd) => cmd.take_action(parsed_args, session).await,
RouterCommands::Tag(cmd) => cmd.take_action(parsed_args, session).await,
}
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/tests/network/v2/router/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mod list_autogen;
mod remove_external_gateways_autogen;
mod remove_extraroutes_autogen;
mod remove_router_interface_autogen;
// mod set_autogen;
mod set_autogen;
mod show_autogen;
mod tag;

Expand Down