More work on calc config

This commit is contained in:
Dominic Ferrando
2026-07-04 02:13:02 -04:00
parent 1da9795d84
commit f85225e08f
6 changed files with 39 additions and 96 deletions
+4 -1
View File
@@ -114,7 +114,10 @@ export const app = new Elysia()
return { sessionId: token.sessionId.toString() };
})
.post("/config", () => { })
.get("/config", () => { })
.get("/config", async () => {
const config = await calculatorService.getConfig();
return config;
})
)
// COMMERCE