From ad7d846604a81b5537da70ec196a123fbf738a98 Mon Sep 17 00:00:00 2001 From: Linus Waldowsky Date: Wed, 25 Feb 2026 21:44:40 +0100 Subject: [PATCH] formatting --- apps/server/src/app.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/server/src/app.ts b/apps/server/src/app.ts index 0a7e86a..72baabf 100644 --- a/apps/server/src/app.ts +++ b/apps/server/src/app.ts @@ -89,7 +89,10 @@ app.get("/health", (_, res) => { // Version endpoint app.get("/version", (_, res) => { - res.json({ version: process.env.VERSION || "unknown", commit: process.env.COMMIT || "unknown" }); + res.json({ + version: process.env.VERSION || "unknown", + commit: process.env.COMMIT || "unknown", + }); }); // AI Test endpoint (for development only)