greatape/greataped/components/contracts/api.go

12 wiersze
257 B
Go

package contracts
import . "rail.town/infrastructure/components/api/protobuf"
type IApi interface {
SetToken(string)
SetDebugMode(bool)
//API Methods
SystemCall(*SystemCallRequest) (*SystemCallResult, error)
Echo(*EchoRequest) (*EchoResult, error)
}