Files
bl/common/utils/event/test_scenarios/factory-request-reply/prices/service.go

19 lines
230 B
Go
Raw Normal View History

package prices
import (
"context"
)
type ServiceImpl struct {
}
func NewService() ServiceImpl {
result := ServiceImpl{}
return result
}
func (s *ServiceImpl) GetPricesForProduct(ctx context.Context, productID string) {
}