From a4d24c785c29df270851d2b03c9193ace9439601 Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Sun, 22 Feb 2026 11:04:52 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20fix=20build=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/videoService/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/modules/videoService/index.ts 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.", + ); + }, +);