chore: update

This commit is contained in:
2026-03-03 23:42:23 +01:00
parent 52b059fafa
commit 0073f80a48
95 changed files with 2720 additions and 40619 deletions
@@ -9,7 +9,11 @@ import (
)
func OrderHoursMiddleware(c *gin.Context) {
now := time.Now()
loc, err := time.LoadLocation("Europe/Paris")
if err != nil {
loc = time.UTC
}
now := time.Now().In(loc)
hour := now.Hour()
min := now.Minute()