Files
dynamix-standard-go-sdk/pkg/cluster/cluster.go

16 lines
296 B
Go
Raw Normal View History

2024-10-01 11:15:36 +03:00
package cluster
import "repository.basistech.ru/BASIS/dynamix-standart-go-sdk/interfaces"
// Structure for creating request to cluster
type Cluster struct {
client interfaces.Caller
}
// Builder for vms endpoints
func New(client interfaces.Caller) *Cluster {
return &Cluster{
client,
}
}