lux/rpc/lux_rpc_controller.go
2025-01-22 15:20:34 +02:00

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)
}