rpc/gateway/server_handler.go
crusader 8c1c86f021 ing
2017-11-09 17:46:44 +09:00

14 lines
220 B
Go

package gateway
import (
"context"
"git.loafle.net/commons_go/rpc"
)
type ServerHandler interface {
rpc.ServerHandler
Invoke(ctx context.Context, method string, params []string) (result interface{}, err error)
}