Files
dynamix-golang-sdk/pkg/sdn/hypervisors/hypervisors.go

18 lines
328 B
Go
Raw Normal View History

2026-04-10 16:47:00 +03:00
package hypervisors
import (
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v14/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,
}
}