This commit is contained in:
Ordis 2023-06-04 02:20:25 +02:00
parent 0e198a7c3a
commit d3b12ef836

View File

@ -1,11 +1,7 @@
import { RequestHandler } from "express";
const dronesController: RequestHandler = (_req, res) => {
res.writeHead(200, {
"Content-Type": "text/html",
"Content-Length": "3"
});
res.end(Buffer.from([0x7b, 0x7d, 0x0a]));
res.json({});
};
export { dronesController };