Spaces:
Paused
Paused
File size: 166 Bytes
e7d0dbe |
1 2 3 4 5 6 7 8 9 |
from flask import Flask
def create_app():
app = Flask(__name__)
from app.routes import main
app.register_blueprint(main)
return app |