This commit is contained in:
Daniel Goc
2026-04-01 13:30:54 +02:00
parent 684f910090
commit b2acb8c922
14 changed files with 326 additions and 15 deletions

View File

@@ -115,6 +115,10 @@ func (s *Server) Setup() error {
carts := s.restricted.Group("/carts")
restricted.CartsHandlerRoutes(carts)
// storage (restricted)
storage := s.restricted.Group("/storage")
restricted.StorageHandlerRoutes(storage)
s.api.All("*", func(c fiber.Ctx) error {
return c.SendStatus(fiber.StatusNotFound)
})