edb/api.go

14 lines
264 B
Go
Raw Normal View History

2020-03-04 10:09:19 +00:00
package main
import (
context "context"
)
// server is used to implement
type server struct{}
// SayHello implements
func (s *server) CreateTable(ctx context.Context, in *TableRequest) (*TableReply, error) {
return &TableReply{Msg: "Hello " + in.Name}, nil
}