Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetCatalog ¶
type GetCatalog struct {
StoreID string
}
type GetCatalogHandler ¶
type GetCatalogHandler struct {
// contains filtered or unexported fields
}
func NewGetCatalogHandler ¶
func NewGetCatalogHandler(catalog domain.CatalogRepository) GetCatalogHandler
func (GetCatalogHandler) GetCatalog ¶
func (h GetCatalogHandler) GetCatalog(ctx context.Context, query GetCatalog) ([]*domain.CatalogProduct, error)
type GetParticipatingStores ¶
type GetParticipatingStores struct{}
type GetParticipatingStoresHandler ¶
type GetParticipatingStoresHandler struct {
// contains filtered or unexported fields
}
func NewGetParticipatingStoresHandler ¶
func NewGetParticipatingStoresHandler(mall domain.MallRepository) GetParticipatingStoresHandler
func (GetParticipatingStoresHandler) GetParticipatingStores ¶
func (h GetParticipatingStoresHandler) GetParticipatingStores(ctx context.Context, _ GetParticipatingStores) ([]*domain.MallStore, error)
type GetProduct ¶
type GetProduct struct {
ID string
}
type GetProductHandler ¶
type GetProductHandler struct {
// contains filtered or unexported fields
}
func NewGetProductHandler ¶
func NewGetProductHandler(catalog domain.CatalogRepository) GetProductHandler
func (GetProductHandler) GetProduct ¶
func (h GetProductHandler) GetProduct(ctx context.Context, query GetProduct) (*domain.CatalogProduct, error)
type GetStoreHandler ¶
type GetStoreHandler struct {
// contains filtered or unexported fields
}
func NewGetStoreHandler ¶
func NewGetStoreHandler(mall domain.MallRepository) GetStoreHandler
type GetStoresHandler ¶
type GetStoresHandler struct {
// contains filtered or unexported fields
}
func NewGetStoresHandler ¶
func NewGetStoresHandler(mall domain.MallRepository) GetStoresHandler
Click to show internal directories.
Click to hide internal directories.