--
-- ~~~ main selenepaw tool
--
-- load help messages
local help = require("src/help")
-- check if no args
if #arg == 0 then
help.main()
return
end
-- run associated action
local actions = require("src/actions")
local action = actions[tostring(arg[1])]
if not action then
help.main()
return
end
action()