v1.12.2
This commit is contained in:
18
pkg/sdn/acsgroups/access_groups.go
Normal file
18
pkg/sdn/acsgroups/access_groups.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// API Actor API for managing SDN access groups
|
||||
package acsgroups
|
||||
|
||||
import (
|
||||
"repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to access groups
|
||||
type AccessGroups struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for access groups endpoints
|
||||
func New(client interfaces.Caller) *AccessGroups {
|
||||
return &AccessGroups{
|
||||
client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user