Files
decort-golang-sdk/pkg/sdn/hypervisors/hypervisors.go
2026-04-10 16:38:00 +03:00

18 lines
323 B
Go

package hypervisors
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
)
// Structure for creating request to hypervisors
type Hypervisors struct {
client interfaces.Caller
}
// Builder for hypervisors endpoints
func New(client interfaces.Caller) *Hypervisors {
return &Hypervisors{
client,
}
}