Versions in this module Expand all Collapse all v1 v1.1.1 Aug 20, 2025 v1.1.0 Aug 20, 2025 Changes in this version + type Handler struct + func NewHandler(userService service.UserService, productService service.ProductService, ...) *Handler + func (h *Handler) CreateProduct(c *gin.Context) + func (h *Handler) CreateUser(c *gin.Context) + func (h *Handler) DeleteProduct(c *gin.Context) + func (h *Handler) DeleteUser(c *gin.Context) + func (h *Handler) GetProduct(c *gin.Context) + func (h *Handler) GetUser(c *gin.Context) + func (h *Handler) Health(c *gin.Context) + func (h *Handler) ListProducts(c *gin.Context) + func (h *Handler) ListUsers(c *gin.Context) + func (h *Handler) Login(c *gin.Context) + func (h *Handler) SetupRoutes(router *gin.Engine, jwtManager *auth.JWTManager) + func (h *Handler) UpdateProduct(c *gin.Context) + func (h *Handler) UpdateUser(c *gin.Context) Other modules containing this package github.com/binary-1024/go-build-test/v2