(product *entity.Product)
| 9 | |
| 10 | type ProductInterface interface { |
| 11 | Create(product *entity.Product) error |
| 12 | FindAll(page, limit int, sort string) ([]entity.Product, error) |
| 13 | FindByID(id string) (*entity.Product, error) |
| 14 | Update(product *entity.Product) error |
nothing calls this directly
no outgoing calls
no test coverage detected