This commit is contained in:
dayterr
2026-04-10 16:38:00 +03:00
parent 30e464e4d2
commit 5cdae8520f
16 changed files with 458 additions and 62 deletions

10
pkg/sdn/hypervisors.go Normal file
View File

@@ -0,0 +1,10 @@
package sdn
import (
hv "repository.basistech.ru/BASIS/decort-golang-sdk/pkg/sdn/hypervisors"
)
// Accessing the SDN method group
func (sdn *SDN) Hypervisors() *hv.Hypervisors {
return hv.New(sdn.client)
}