21 lines
316 B
Go
21 lines
316 B
Go
package server
|
|
|
|
import (
|
|
context "context"
|
|
"gitee.com/timedb/wheatCache/pkg/proto"
|
|
)
|
|
|
|
type server struct{}
|
|
|
|
func NewServer() proto.CommServerServer {
|
|
ser := &server{}
|
|
return ser
|
|
}
|
|
|
|
func (s *server) Commend(
|
|
ctx context.Context,
|
|
req *proto.CommendRequest,
|
|
) (*proto.CommendResponse, error) {
|
|
return nil, nil
|
|
}
|