v9.0.0
This commit is contained in:
18
pkg/cloudbroker/node/node.go
Normal file
18
pkg/cloudbroker/node/node.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// API Actors for managing node. These actors are the final API for end users to manage nodes
|
||||
package node
|
||||
|
||||
import (
|
||||
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to node
|
||||
type Node struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for node endpoints
|
||||
func New(client interfaces.Caller) *Node {
|
||||
return &Node{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user