Add query time tracking to IO Events.

This commit is contained in:
Patrick Fic
2021-04-22 10:16:49 -07:00
parent cdf99a16fe
commit 08faff4d8e
11 changed files with 112 additions and 3 deletions

View File

@@ -136,6 +136,9 @@ app.get("/qbo/callback", qbo.callback);
var data = require("./server/data/data");
app.get("/data/ah", data.autohouse);
var ioevent = require("./server/ioevent/ioevent");
app.post("/ioevent", ioevent.default);
app.get("/", async function (req, res) {
res.status(200).send("Access Forbidden.");
});