20 lines
438 B
Go
20 lines
438 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
pb "loafle.com/overflow/crawler_go/grpc"
|
||
|
)
|
||
|
|
||
|
type ConfigServer struct {
|
||
|
}
|
||
|
|
||
|
func (s *ConfigServer) Add(c context.Context, in *pb.Input) (*pb.Output, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
func (s *ConfigServer) Remove(c context.Context, in *pb.Input) (*pb.Output, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
func (s *ConfigServer) Init(c context.Context, in *pb.InputArray) (*pb.Output, error) {
|
||
|
return nil, nil
|
||
|
}
|