update api pengaduan

This commit is contained in:
2025-10-28 14:23:40 +08:00
parent 1b7e043d54
commit bf0083e678
2 changed files with 96 additions and 8 deletions

View File

@@ -13,6 +13,7 @@ import AduanRoute from "./server/routes/aduan_route";
import { cors } from "@elysiajs/cors";
import { MCPRoute } from "./server/routes/mcp_route";
import PengaduanRoute from "./server/routes/pengaduan_route";
const Docs = new Elysia({
tags: ["docs"],
@@ -32,7 +33,8 @@ const Api = new Elysia({
.use(CredentialRoute)
.use(UserRoute)
.use(LayananRoute)
.use(AduanRoute);
.use(AduanRoute)
.use(PengaduanRoute);
const app = new Elysia()
.use(Api)