-- Code generated by protoc-gen-twirp_eclier v5.0.0DO NOT EDIT -- source: route.proto script.verb = "routes:put" script.help = "Executes method put 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 Route fs:string("host", "", "value for message arg host") fs:string("id", "", "value for message arg id") fs:string("creator", "", "value for message arg creator") 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.new(apiURL, token):routes():put(flags) print("id:\t\t" .. tostring(resp.id)) print("creator:\t\t" .. tostring(resp.creator)) print("host:\t\t" .. tostring(resp.host)) end