feat: endpoint for create video service

This commit is contained in:
Rafi Arrafif
2026-01-30 15:18:00 +07:00
parent 0521c27834
commit ab0c8afca4
6 changed files with 83 additions and 1 deletions

View File

@ -1,7 +1,9 @@
import Elysia from "elysia";
import { bulkInsertEpisodeController } from "./controllers/bulkInsertEpisode.controller";
import { bulkInsertMediaController } from "./controllers/bulkInsertMedia.controller";
import { createVideoServiceInternalController } from "./controllers/createVideoService.controller";
export const internalModule = new Elysia({ prefix: "/internal" })
.post("/media/bulk-insert", bulkInsertMediaController)
.post("/episode/bulk-insert", bulkInsertEpisodeController);
.post("/episode/bulk-insert", bulkInsertEpisodeController)
.post("/video-service", createVideoServiceInternalController);