app.py 177 B

1234567891011
  1. """
  2. app -
  3. auther: tanlie
  4. date: 2026/8/23
  5. """
  6. from flask import Flask
  7. def create_app():
  8. app = Flask(__name__)
  9. app.config.from_object('app.config.setting')
  10. return app