(id string)
| 24 | |
| 25 | type ProductServiceInterface interface { |
| 26 | Get(id string) (ProductInterface, error) |
| 27 | Create(name string, price float64) (ProductInterface, error) |
| 28 | Enable(product ProductInterface) (ProductInterface, error) |
| 29 | Disable(product ProductInterface) (ProductInterface, error) |
nothing calls this directly
no outgoing calls
no test coverage detected