File

squishy @ 160:6c1953fbe0fa

clix.moderate: New command to do MUC moderation (XEP-0425)
author Kim Alvefur <zash@zash.se>
date Sat, 06 Nov 2021 18:12:22 +0100
parent 157:aa0f11fb166c
line wrap: on
line source

local commands = {
	"send";
	"sendfilecontent";
	"receive";
	"version";
	"ping";
	"bounce";
	"mirror";
	"raw";
	"roster";
	"export";
	"vcard";
	"publish_atom";
	"sendfile";
	"archive";
	"presence";
	"watch_pep";
	"avatar";
	"moderate";
}

for _, cmd in ipairs(commands) do
	Module("clix."..cmd)("clix/"..cmd..".lua")
end

if GetOption "with-verse" then
	Module("verse")(GetOption "with-verse");
end

Main "clix.lua"

Option "executable"
Output "clix.bin"