Versions in this module Expand all Collapse all v0 v0.0.1 Aug 13, 2024 Changes in this version + func SetupRouter(log *slog.Logger, auth AuthHandler, productHandlers ProductsHandler) *gin.Engine + type AuthHandler interface + UserLogin func(c *gin.Context) + UserRegister func(c *gin.Context) + type ProductsHandler interface + CreateProduct func(c *gin.Context) + DeleteProduct func(c *gin.Context) + FindProduct func(c *gin.Context) + FindProductList func(c *gin.Context) + UpdateProduct func(c *gin.Context)