system-prompts-and-models-o.../dealix/auto_client_acquisition/revenue_launch/__init__.py
Sami Assiri b13cb389cc feat(dealix): sync full Dealix package to repo
- API routers, ACA modules, integrations (draft operators)
- Docs, landing pages, scripts (launch readiness, scorecard)
- Tests and CI workflow updates for Dealix

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-01 21:01:17 +03:00

18 lines
498 B
Python

"""Revenue Today — offers, pipeline, pilot delivery, manual payment (no live charge)."""
from auto_client_acquisition.revenue_launch.offer_builder import (
build_499_pilot_offer,
build_case_study_free_offer,
build_growth_os_pilot_offer,
build_private_beta_offer,
recommend_offer_for_segment,
)
__all__ = [
"build_private_beta_offer",
"build_499_pilot_offer",
"build_growth_os_pilot_offer",
"build_case_study_free_offer",
"recommend_offer_for_segment",
]