mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
- 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>
18 lines
498 B
Python
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",
|
|
]
|