adding the plan post api

This commit is contained in:
Md Sharafat Hassain
2026-04-07 22:32:13 +06:00
parent ba1b0df589
commit bcdb125af1
12 changed files with 345 additions and 1 deletions
+2
View File
@@ -3,6 +3,7 @@ import path from "path";
import { configs } from "./app/configs";
import { accountSwaggerDocs } from "./app/modules/account/account.swagger";
import { profileSwaggerDocs } from "./app/modules/profile/profile.swagger";
import { planSwaggerDocs } from "./app/modules/plan/plan.swagger";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
@@ -18,6 +19,7 @@ export const swaggerOptions = {
paths: {
...accountSwaggerDocs,
...profileSwaggerDocs,
...planSwaggerDocs,
},
servers:
configs.env === "production"