Base code

This commit is contained in:
Kunthawat Greethong
2026-01-08 22:39:53 +07:00
parent 697115c61a
commit c35fa52117
2169 changed files with 626670 additions and 0 deletions

11
backend/api/onboarding.py Normal file
View File

@@ -0,0 +1,11 @@
"""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('_')]