19 lines
388 B
Go
19 lines
388 B
Go
// Operator actions for handling interventions on a storage endpoint provider
|
|
package sep
|
|
|
|
import (
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
|
|
)
|
|
|
|
// Structure for creating request to storage endpoint provider
|
|
type SEP struct {
|
|
client interfaces.Caller
|
|
}
|
|
|
|
// Builder for SEP endpoints
|
|
func New(client interfaces.Caller) *SEP {
|
|
return &SEP{
|
|
client: client,
|
|
}
|
|
}
|