19 lines
346 B
Go
19 lines
346 B
Go
// Operator actions for handling interventions on a grid
|
|
package grid
|
|
|
|
import (
|
|
"repository.basistech.ru/BASIS/decort-golang-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,
|
|
}
|
|
}
|