__init__.py 215 B

1234567891011121314
  1. """
  2. __init__.py -
  3. auther: tanlie
  4. date: 2026/8/30
  5. """
  6. from fastapi import FastAPI
  7. from app.mobile import register_mobile_routes
  8. def create_app():
  9. app = FastAPI()
  10. register_mobile_routes(app)
  11. return app