Files
2025-09-28 11:39:12 +02:00

35 lines
606 B
Lua

if _G['HELP'] then
require 'cli.help'
os.exit(0, true)
end
if _G['VERSION'] then
require 'cli.version'
os.exit(0, true)
end
if _G['CHECK'] then
local ret = require 'cli.check'.runCLI()
os.exit(ret, true)
end
if _G['CHECK_WORKER'] then
local ret = require 'cli.check_worker'.runCLI()
os.exit(ret or 0, true)
end
if _G['DOC_UPDATE'] then
require 'cli.doc' .runCLI()
os.exit(0, true)
end
if _G['DOC'] then
require 'cli.doc' .runCLI()
os.exit(0, true)
end
if _G['VISUALIZE'] then
local ret = require 'cli.visualize' .runCLI()
os.exit(ret or 0, true)
end