stock request table created

This commit is contained in:
2026-07-04 17:49:54 +05:30
parent f220c24c17
commit abe2cb997b
24 changed files with 648 additions and 61 deletions

View File

@@ -62,9 +62,8 @@ func selectDBMiddleware(c *fiber.Ctx) error {
}
var currentDB *gorm.DB
if flavour == "dev" {
currentDB = db.DB
} else if flavour == "live" {
switch flavour {
case "dev", "live":
currentDB = db.DB
}