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