10 lines
157 B
Python
10 lines
157 B
Python
from flask import Flask
|
|
from .controllers.top import top_bp
|
|
|
|
def create_app():
|
|
app = Flask(__name__)
|
|
|
|
app.register_blueprint(top_bp)
|
|
|
|
return app
|