Files
cpp-project-template/third_party/prometheus/3rdparty/civetweb/test/response_header.lua

12 lines
281 B
Lua
Raw Normal View History

2025-08-22 18:22:57 +08:00
body = [[<html><body><p>
Hello world!
</p>
</body></html>
]]
--mg.response.status = 200 -- "200 OK" is the default
mg.response.http_headers["Content-Type"] = "text/html";
mg.response.http_headers["Content-Length"] = tostring(string.len(body));
mg.response.send();
mg.write(body);