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