6 lines
92 B
Go
6 lines
92 B
Go
|
package connector
|
||
|
|
||
|
type RPCCommand interface {
|
||
|
Execute(inputJSON string) (string, error)
|
||
|
}
|