test(datamart): more work on datamart stuff

This commit is contained in:
2025-12-30 21:04:54 -06:00
parent 9eeede7fbe
commit cc3e823a7d
4 changed files with 172 additions and 6 deletions

View File

@@ -4,10 +4,4 @@ export const setupDatamartRoutes = (baseUrl: string, app: Express) => {
//setup all the routes
app.use(`${baseUrl}/api/datamart`, runQuery);
app.all("*foo", (_, res) => {
res.status(400).json({
message: "You have encountered a datamart route that dose not exist",
});
});
};