Files
dynamix-golang-sdk/pkg/cloudbroker/tasks/tasks.go
2025-12-08 16:30:08 +03:00

17 lines
323 B
Go

// User API tasks interface
package tasks
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
// Structure for creating request to tasks
type Tasks struct {
client interfaces.Caller
}
// Builder for tasks endpoints
func New(client interfaces.Caller) *Tasks {
return &Tasks{
client: client,
}
}