8 lines
136 B
Python
8 lines
136 B
Python
|
from flask import Flask
|
||
|
from .deeper import t
|
||
|
|
||
|
def create_app():
|
||
|
app = Flask(__name__)
|
||
|
app.register_blueprint(t)
|
||
|
|
||
|
return app
|