mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
23 lines
567 B
Python
23 lines
567 B
Python
"""Customer onboarding journey & acceptance checklist — JSON for UI and sales engineering."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.services.customer_onboarding_journey import (
|
|
build_acceptance_test_checklist,
|
|
build_journey,
|
|
)
|
|
|
|
router = APIRouter(prefix="/customer-onboarding", tags=["Customer Onboarding"])
|
|
|
|
|
|
@router.get("/journey")
|
|
async def get_customer_journey():
|
|
return build_journey()
|
|
|
|
|
|
@router.get("/acceptance-test")
|
|
async def get_acceptance_test_checklist():
|
|
return build_acceptance_test_checklist()
|