Files
decort-golang-sdk/pkg/cloudbroker/tasks.go
2023-03-17 12:54:34 +03:00

11 lines
219 B
Go

package cloudbroker
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/pkg/cloudbroker/tasks"
)
// Accessing the tasks method group
func (cb *CloudBroker) Tasks() *tasks.Tasks {
return tasks.New(cb.client)
}