File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
internal/namespaces/baremetal/v3 Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import (
1010 audit_trail "github.com/scaleway/scaleway-cli/v2/internal/namespaces/audit_trail/v1alpha1"
1111 autocompleteNamespace "github.com/scaleway/scaleway-cli/v2/internal/namespaces/autocomplete"
1212 "github.com/scaleway/scaleway-cli/v2/internal/namespaces/baremetal/v1"
13+ baremetalV3 "github.com/scaleway/scaleway-cli/v2/internal/namespaces/baremetal/v3"
1314 billing "github.com/scaleway/scaleway-cli/v2/internal/namespaces/billing/v2beta1"
1415 block "github.com/scaleway/scaleway-cli/v2/internal/namespaces/block/v1alpha1"
1516 "github.com/scaleway/scaleway-cli/v2/internal/namespaces/cockpit/v1"
@@ -69,6 +70,7 @@ func GetCommands() *core.Commands {
6970 iam .GetCommands (),
7071 instance .GetCommands (),
7172 baremetal .GetCommands (),
73+ baremetalV3 .GetCommands (),
7274 cockpit .GetCommands (),
7375 k8s .GetCommands (),
7476 marketplace .GetCommands (),
Original file line number Diff line number Diff line change 1+ package baremetal
2+
3+ import (
4+ "github.com/scaleway/scaleway-cli/v2/core"
5+ )
6+
7+ func GetCommands () * core.Commands {
8+ cmds := GetGeneratedCommands ()
9+
10+ return cmds
11+ }
You can’t perform that action at this time.
0 commit comments