rpc/gateway/server_handler.go
crusader eac00359db ing
2017-11-09 17:38:02 +09:00

12 lines
187 B
Go

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