Compare commits

...

2 Commits

Author SHA1 Message Date
e46711bf2f Merge pull request '🩺 chore: add status check endpoint' (#14) from chore/status into main
All checks were successful
Sync to GitHub / sync (push) Successful in 9s
Reviewed-on: #14
2026-02-10 19:16:40 +07:00
56e2b046b7 🩺 chore: add status check endpoint
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 56s
2026-02-10 19:15:34 +07:00

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");
},
);