25 lines
941 B
Go
25 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")
|
||
|
}
|