Inventory Infrastructure and Example for Suits #10

Merged
OrdisPrime merged 16 commits from inventory_basic into main 2023-06-03 18:06:22 -07:00
Showing only changes of commit d3b12ef836 - Show all commits

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 };