ProductService handles product search and catalog operations
| 7 | |
| 8 | // ProductService handles product search and catalog operations |
| 9 | type ProductService struct { |
| 10 | products []models.Product |
| 11 | } |
| 12 | |
| 13 | // NewProductService creates a new product service with mock data |
| 14 | func NewProductService() *ProductService { |
nothing calls this directly
no outgoing calls
no test coverage detected