rpc/gateway/server_handler.go
crusader b284554280 ing
2017-11-08 15:35:27 +09:00

12 lines
185 B
Go

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