v12.0.0
This commit is contained in:
18
pkg/cloudbroker/zone/zone.go
Normal file
18
pkg/cloudbroker/zone/zone.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// API Actor for use zones
|
||||
package zone
|
||||
|
||||
import (
|
||||
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to zone
|
||||
type Zone struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for zone endpoints
|
||||
func New(client interfaces.Caller) *Zone {
|
||||
return &Zone{
|
||||
client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user