11 lines
274 B
Python
11 lines
274 B
Python
from flask import Flask
|
|
from . import reset, config
|
|
|
|
def create_app():
|
|
app = Flask(__name__, template_folder="ui/templates", static_folder="ui/static")
|
|
app.config.from_object(config.ProductionConfig())
|
|
|
|
app.register_blueprint(reset.bp)
|
|
|
|
return app
|