10 lines
316 B
Python
10 lines
316 B
Python
from flask import Flask, render_template
|
|
from . import reset
|
|
|
|
def create_app():
|
|
app = Flask(__name__, instance_relative_config=True, template_folder="ui/templates", static_folder="ui/static")
|
|
app.config.from_object("instance.config.DebugConfig")
|
|
|
|
app.register_blueprint(reset.bp)
|
|
|
|
return app |