19 lines
341 B
Go
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,
|
||
|
|
}
|
||
|
|
}
|