Add new resources, extend fields in config

This commit is contained in:
stSolo
2022-10-06 12:53:21 +03:00
parent 5fd450382c
commit 8712561853
39 changed files with 1784 additions and 3 deletions

13
pkg/cloudbroker/rg/rg.go Normal file
View File

@@ -0,0 +1,13 @@
package rg
import "github.com/rudecs/decort-sdk/interfaces"
type RG struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *RG {
return &RG{
client: client,
}
}