package download import ( "context" "downloader/internal/core/entities" ) type BackgroundService interface { Run(ctx context.Context, download *entities.Download) error }