14 lines
260 B
Go
14 lines
260 B
Go
package rpc
|
|
|
|
type LuxRpcType int
|
|
|
|
const (
|
|
LuxRpcTypeRoot = 0
|
|
LuxRpcTypeQuery = 1
|
|
)
|
|
|
|
type LuxRpcController interface {
|
|
GetRpcName() string
|
|
Register(rpc *LuxRpcServer)
|
|
Handle(request LuxRpcRequest, rpcType LuxRpcType) (LuxRpcResponse, LuxRpcError, bool)
|
|
}
|