NAPPDesafio/api/application/products/module.go
2024-07-21 00:15:14 -03:00

11 lines
241 B
Go

package productsmodule
import "github.com/gofiber/fiber/v2"
// apply routes in app fiber, with controllers and services defined
func ProductstModuleDecorator(app *fiber.App) {
s := newService()
c := newController(s)
newRoutes(c, app)
}