# -*- coding: utf-8 -*-
"""生产入口（gunicorn 用）：gunicorn wsgi:app"""
from app import create_app

app = create_app()
