2017-11-08 06:35:27 +00:00
|
|
|
package gateway
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.loafle.net/commons_go/rpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ServerHandler interface {
|
|
|
|
rpc.ServerHandler
|
|
|
|
|
2017-11-09 08:38:02 +00:00
|
|
|
Invoke(method string, params []string) (result interface{}, err error)
|
2017-11-08 06:35:27 +00:00
|
|
|
}
|