mod_ping: Ignore unused arguments [luacheck]

This commit is contained in:
Kim Alvefur 2018-04-06 01:32:28 +02:00
parent 3ec060fc0c
commit da6459157d

View file

@ -21,7 +21,7 @@ module:hook("iq-get/host/urn:xmpp:ping:ping", ping_handler);
local datetime = require "util.datetime".datetime;
function ping_command_handler (self, data, state)
function ping_command_handler (self, data, state) -- luacheck: ignore 212
local now = datetime();
return { info = "Pong\n"..now, status = "completed" };
end