36 lines
867 B
Lua
36 lines
867 B
Lua
|
-- Code generated by protoc-gen-twirp_eclier v5.0.0DO NOT EDIT
|
||
|
-- source: route.proto
|
||
|
|
||
|
script.verb = "routes:get"
|
||
|
script.help = "Executes method get on service routes for twirp package xeserv.us.route.routes"
|
||
|
script.author = "machine-generated"
|
||
|
script.version = "v5.0.0"
|
||
|
script.usage = ""
|
||
|
|
||
|
local flag = require "flag"
|
||
|
local svc = require "svc"
|
||
|
|
||
|
local fs = flag.new()
|
||
|
|
||
|
-- flags for GetRouteRequest
|
||
|
fs:string("unused", "", "value for message arg unused")
|
||
|
fs:string("id", "", "value for message arg id")
|
||
|
|
||
|
script.usage = fs:usage()
|
||
|
|
||
|
function run(arg)
|
||
|
if arg[1] == "-help" or arg[1] == "--help" then
|
||
|
print(fs:usage())
|
||
|
return
|
||
|
end
|
||
|
|
||
|
arg[0] = script.verb
|
||
|
local flags = fs:parse(arg)
|
||
|
|
||
|
local resp = svc.routes.get(flags)
|
||
|
|
||
|
print("id:\t\t" .. tostring(resp.id))
|
||
|
print("creator:\t\t" .. tostring(resp.creator))
|
||
|
print("host:\t\t" .. tostring(resp.host))
|
||
|
end
|