Documentation ¶
Index ¶
- func NewGetProductByIdHandler(log logger.Logger, cfg *config.Config, mongoRepo repository.Repository, ...) *getProductByIdHandler
- func NewSearchProductHandler(log logger.Logger, cfg *config.Config, mongoRepo repository.Repository, ...) *searchProductHandler
- type GetProductByIdHandler
- type GetProductByIdQuery
- type ProductQueries
- type SearchProductHandler
- type SearchProductQuery
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewGetProductByIdHandler ¶
func NewGetProductByIdHandler(log logger.Logger, cfg *config.Config, mongoRepo repository.Repository, redisRepo repository.CacheRepository) *getProductByIdHandler
func NewSearchProductHandler ¶
func NewSearchProductHandler(log logger.Logger, cfg *config.Config, mongoRepo repository.Repository, redisRepo repository.CacheRepository) *searchProductHandler
Types ¶
type GetProductByIdHandler ¶
type GetProductByIdQuery ¶
func NewGetProductByIdQuery ¶
func NewGetProductByIdQuery(productID uuid.UUID) *GetProductByIdQuery
type ProductQueries ¶
type ProductQueries struct { GetProductById GetProductByIdHandler SearchProduct SearchProductHandler }
func NewProductQueries ¶
func NewProductQueries(getProductById GetProductByIdHandler, searchProduct SearchProductHandler) *ProductQueries
type SearchProductHandler ¶
type SearchProductHandler interface {
Handle(ctx context.Context, query *SearchProductQuery) (*models.ProductsList, error)
}
type SearchProductQuery ¶
type SearchProductQuery struct { Text string `json:"text"` Pagination *utils.Pagination `json:"pagination"` }
func NewSearchProductQuery ¶
func NewSearchProductQuery(text string, pagination *utils.Pagination) *SearchProductQuery
Click to show internal directories.
Click to hide internal directories.