net.httpserver: Remove obsolete API

This commit is contained in:
Matthew Wild 2025-02-14 14:50:22 +00:00
parent 09e5f799a0
commit 1acb229597

View file

@ -1,17 +0,0 @@
-- COMPAT w/pre-0.9
local log = require "prosody.util.logger".init("net.httpserver");
local traceback = debug.traceback;
local _ENV = nil;
-- luacheck: std none
local function fail()
log("error", "Attempt to use legacy HTTP API. For more info see https://prosody.im/doc/developers/legacy_http");
log("error", "Legacy HTTP API usage, %s", traceback("", 2));
end
return {
new = fail;
new_from_config = fail;
set_default_handler = fail;
};