mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
15 lines
397 B
Go
15 lines
397 B
Go
package nodes
|
|
|
|
type rPCCallRequestNode struct {
|
|
bareNode
|
|
TimeoutInSeconds int
|
|
}
|
|
|
|
type rpcCallRequestNodeFactory struct{}
|
|
|
|
func (f rpcCallRequestNodeFactory) Name() string { return "RPCCallRequestNode" }
|
|
func (f rpcCallRequestNodeFactory) Category() string { return NODE_CATEGORY_ACTION }
|
|
func (f rpcCallRequestNodeFactory) Create(id string, meta Metadata) (Node, error) {
|
|
return nil, nil
|
|
}
|