feat(added in swagger): added the base for swagger to implement fully later

This commit is contained in:
2025-11-01 00:05:56 -05:00
parent f9cfada840
commit 9d9ca63d7c
2 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
export const swaggerOptions = {
definition: {
openapi: "3.0.0",
info: {
title: "Logistics Support Tool",
version: "1.0.0",
},
},
// globs where swagger-jsdoc should look for annotations:
apis: ["../../src/**/*.ts"],
};