Skip to content

Commit d730ef5

Browse files
committed
fix(baremetal): activate PN v3
1 parent 02cc9eb commit d730ef5

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

commands/commands.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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(),
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
}

0 commit comments

Comments
 (0)