prosodyctl, util.prosodyctl.shell: prosodyctl shell - a client to access the prosodyctl admin shell

This commit is contained in:
Matthew Wild 2020-06-01 15:44:44 +01:00
parent b0463f0290
commit a355440c01
2 changed files with 129 additions and 0 deletions

View file

@ -1356,6 +1356,10 @@ function commands.check(arg)
return ok and 0 or 2;
end
function commands.shell(arg)
require "util.prosodyctl.shell".start(arg);
end
---------------------
local async = require "util.async";