🩺 chore: add status check endpoint
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 56s

This commit is contained in:
2026-02-10 19:15:34 +07:00
parent 5eef52e301
commit 56e2b046b7

View File

@ -0,0 +1,9 @@
import Elysia, { Context } from "elysia";
import { returnWriteResponse } from "../../helpers/callback/httpResponse";
export const statusModule = new Elysia({ prefix: "status" }).get(
"/",
(ctx: Context) => {
return returnWriteResponse(ctx.set, 200, "Service is up and running");
},
);