diff options
author | Matthew Wild <mwild1@gmail.com> | 2023-04-06 14:49:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2023-04-06 14:49:11 +0100 |
commit | ae5bf133e7c914f1f01b283fbb601c30b7022dd8 (patch) | |
tree | 8e114cf9001716164d0c10905dd1548c78a6e751 | |
parent | 72c5ac4054d5a12d0781a626d0ed875d8dd22324 (diff) | |
download | prosody-ae5bf133e7c914f1f01b283fbb601c30b7022dd8.tar.gz prosody-ae5bf133e7c914f1f01b283fbb601c30b7022dd8.zip |
mod_debug_reset: Remove now unused import of util.time (thanks luacheck)
-rw-r--r-- | plugins/mod_debug_reset.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/mod_debug_reset.lua b/plugins/mod_debug_reset.lua index eb54c400..5964aff0 100644 --- a/plugins/mod_debug_reset.lua +++ b/plugins/mod_debug_reset.lua @@ -7,8 +7,6 @@ module:set_global(); local hostmanager = require "prosody.core.hostmanager"; -local timer = require "prosody.util.timer"; - local function do_reset() module:log("info", "Performing reset..."); local hosts = {}; |