12 lines
185 B
Go
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)
|
||
|
}
|