2026-04-10 16:47:00 +03:00
|
|
|
package hypervisors
|
|
|
|
|
|
|
|
|
|
import (
|
2026-06-05 17:30:36 +03:00
|
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/interfaces"
|
2026-04-10 16:47:00 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
|
}
|
|
|
|
|
}
|