🔧 chore: fix build error
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 30s

This commit is contained in:
2026-02-22 11:04:52 +07:00
parent 482103c78a
commit a4d24c785c

View File

@ -0,0 +1,13 @@
import Elysia, { Context } from "elysia";
import { returnWriteResponse } from "../../helpers/callback/httpResponse";
export const videoServiceModule = new Elysia({ prefix: "/video-service" }).get(
"/",
async (ctx: Context) => {
return returnWriteResponse(
ctx.set,
200,
"Video service endpoint is working.",
);
},
);