Files
moreminimore-marketing/backend/api/onboarding.py
Kunthawat Greethong c35fa52117 Base code
2026-01-08 22:39:53 +07:00

12 lines
434 B
Python

"""Thin shim to re-export stable onboarding endpoints.
This file has historically been modified by external scripts. To prevent
accidental truncation, the real implementations now live in
`backend/api/onboarding_endpoints.py`. Importers that rely on
`backend.api.onboarding` will continue to work.
"""
from .onboarding_endpoints import * # noqa: F401,F403
__all__ = [name for name in globals().keys() if not name.startswith('_')]