v1.0.0
This commit is contained in:
18
pkg/cloudbroker/grid/grid.go
Normal file
18
pkg/cloudbroker/grid/grid.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// Operator actions for handling interventions on a grid
|
||||
package grid
|
||||
|
||||
import (
|
||||
"github.com/rudecs/decort-sdk/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to grid
|
||||
type Grid struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for grid endpoints
|
||||
func New(client interfaces.Caller) *Grid {
|
||||
return &Grid{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user