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

19 lines
341 B
Go

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