in domain/products.go [68:75]
func (d *Products) DeleteProduct(ctx context.Context, id string) error { err := d.store.Delete(ctx, id) if err != nil { return fmt.Errorf("%w", err) } return nil }