Files
decort-golang-sdk/pkg/cloudbroker/k8s.go

11 lines
207 B
Go
Raw Normal View History

2022-10-03 16:56:47 +03:00
package cloudbroker
import (
2023-03-17 12:54:34 +03:00
"repository.basistech.ru/BASIS/decort-golang-sdk/pkg/cloudbroker/k8s"
2022-10-03 16:56:47 +03:00
)
2022-12-22 17:56:47 +03:00
// Accessing the K8S method group
2022-10-03 16:56:47 +03:00
func (cb *CloudBroker) K8S() *k8s.K8S {
return k8s.New(cb.client)
}