File tree 3 files changed +915
-0
lines changed
3 files changed +915
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import (
10
10
"github.com/scaleway/scaleway-cli/internal/namespaces/info"
11
11
initNamespace "github.com/scaleway/scaleway-cli/internal/namespaces/init"
12
12
"github.com/scaleway/scaleway-cli/internal/namespaces/instance/v1"
13
+ iot "github.com/scaleway/scaleway-cli/internal/namespaces/iot/v1beta1"
13
14
k8s "github.com/scaleway/scaleway-cli/internal/namespaces/k8s/v1"
14
15
"github.com/scaleway/scaleway-cli/internal/namespaces/lb/v1"
15
16
"github.com/scaleway/scaleway-cli/internal/namespaces/marketplace/v1"
@@ -41,5 +42,6 @@ func GetCommands() *core.Commands {
41
42
commands .Merge (info .GetCommands ())
42
43
commands .Merge (rdb .GetCommands ())
43
44
commands .Merge (lb .GetCommands ())
45
+ commands .Merge (iot .GetCommands ())
44
46
return commands
45
47
}
Original file line number Diff line number Diff line change
1
+ package iot
2
+
3
+ import (
4
+ "github.com/scaleway/scaleway-cli/internal/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