🔧 chore: fix build error
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 30s
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 30s
This commit is contained in:
13
src/modules/videoService/index.ts
Normal file
13
src/modules/videoService/index.ts
Normal 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.",
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user