wheat-cache/storage/server/server.go

21 lines
320 B
Go
Raw Normal View History

2021-08-31 23:31:31 +08:00
package server
import (
context "context"
"gitee.com/timedb/wheatCache/storage/proto"
)
type server struct{}
func NewServer() proto.CommServerServer {
ser := &server{}
return ser
}
func (s *server) Commend(
ctx context.Context,
2021-09-18 15:27:45 +08:00
req *proto.CommendRequest,
2021-08-31 23:31:31 +08:00
) (*proto.CommendResponse, error) {
return nil, nil
}