diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 3d93125..1715708 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -31,6 +31,7 @@ app.addContentTypeParser("application/json", { parseAs: "string" }, (_req, body, } }); +app.get("/", async () => ({ name: "menul.io API", status: "ok", version: "0.0.1" })); app.get("/health", async () => ({ status: "ok" })); await app.register(meRoutes);