File size: 158 Bytes
c30f358
 
 
 
 
 
 
 
 
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