💥 breaking: upgrade Elysia to v1.4 and update codebase accordingly

This commit is contained in:
2026-03-07 13:41:13 +07:00
parent c992314cf1
commit 0b786206e4
15 changed files with 352 additions and 287 deletions

View File

@ -0,0 +1,18 @@
import { ElysiaOpenAPIConfig } from "@elysiajs/openapi";
export const openAPIConfig: ElysiaOpenAPIConfig = {
documentation: {
info: {
title: "TV Nounoz API",
description: "API documentation for TV Nounoz backend services",
version: "1.0.0",
},
tags: [
{
name: "Internal",
description:
"Endpoints for internal use, such as administrative tasks and data management operations. These endpoints may require authentication and are not intended for public use.",
},
],
},
};