diff --git a/src/modules/videoService/index.ts b/src/modules/videoService/index.ts new file mode 100644 index 0000000..679085c --- /dev/null +++ b/src/modules/videoService/index.ts @@ -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.", + ); + }, +);