""" __init__.py - auther: tanlie date: 2026/8/30 """ from fastapi import FastAPI from app.mobile import register_mobile_routes def create_app(): app = FastAPI() register_mobile_routes(app) return app