mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
net.*: Remove use of module() function
This commit is contained in:
parent
075278ff98
commit
9ed000c898
5 changed files with 44 additions and 34 deletions
|
@ -2,14 +2,15 @@
|
|||
local log = require "util.logger".init("net.httpserver");
|
||||
local traceback = debug.traceback;
|
||||
|
||||
module "httpserver"
|
||||
local _ENV = nil;
|
||||
|
||||
function fail()
|
||||
log("error", "Attempt to use legacy HTTP API. For more info see http://prosody.im/doc/developers/legacy_http");
|
||||
log("error", "Legacy HTTP API usage, %s", traceback("", 2));
|
||||
end
|
||||
|
||||
new, new_from_config = fail, fail;
|
||||
set_default_handler = fail;
|
||||
|
||||
return _M;
|
||||
return {
|
||||
new = fail;
|
||||
new_from_config = fail;
|
||||
set_default_handler = fail;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue