status-go/services/connector/rpc_command.go

6 lines
92 B
Go
Raw Normal View History

package connector
type RPCCommand interface {
Execute(inputJSON string) (string, error)
}