forked from TrueCloudLab/frostfs-node
Airat Arifullin
3a2c319b87
* Define new types and gRPC methods to manipulate APE chains in control service. * Stub gRPC handlers for the generated methods. Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
24 lines
941 B
Go
24 lines
941 B
Go
package control
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/control"
|
|
)
|
|
|
|
func (s *Server) AddChainLocalOverride(ctx context.Context, req *control.AddChainLocalOverrideRequest) (*control.AddChainLocalOverrideResponse, error) {
|
|
return nil, fmt.Errorf("not implemented yet")
|
|
}
|
|
|
|
func (s *Server) GetChainLocalOverride(ctx context.Context, req *control.GetChainLocalOverrideRequest) (*control.GetChainLocalOverrideResponse, error) {
|
|
return nil, fmt.Errorf("not implemented yet")
|
|
}
|
|
|
|
func (s *Server) ListChainLocalOverrides(ctx context.Context, req *control.ListChainLocalOverridesRequest) (*control.ListChainLocalOverridesResponse, error) {
|
|
return nil, fmt.Errorf("not implemented yet")
|
|
}
|
|
|
|
func (s *Server) RemoveChainLocalOverride(ctx context.Context, req *control.RemoveChainLocalOverrideRequest) (*control.RemoveChainLocalOverrideResponse, error) {
|
|
return nil, fmt.Errorf("not implemented yet")
|
|
}
|