package modules import ( service "cls/internal/application/price" "cls/internal/infrastructure/persistence/price_default" repo "cls/internal/infrastructure/persistence/price" "cls/internal/interfaces" "cls/internal/interfaces/price" "go.uber.org/fx" ) var PriceModule = fx.Module("PriceModule", fx.Provide( interfaces.AsHandler(price.NewPriceHandler), service.NewPriceService, repo.NewPriceRepositoryORM, price_default.NewPriceRepositoryORM, ))