19 lines
381 B
Go
19 lines
381 B
Go
// API Actor API for managing SDN access groups
|
|
package acsgroups
|
|
|
|
import (
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/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,
|
|
}
|
|
}
|