This commit is contained in:
2023-08-22 15:28:39 +03:00
parent 1c59ca338a
commit a3711057ba
18 changed files with 901 additions and 9 deletions

10
pkg/cloudbroker/stack.go Normal file
View File

@@ -0,0 +1,10 @@
package cloudbroker
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/pkg/cloudbroker/stack"
)
// Accessing the Stack method group
func (cb *CloudBroker) Stack() *stack.Stack {
return stack.New(cb.client)
}