ti-powerbar/app/__init__.py
2023-11-19 00:23:17 +01:00

7 lines
No EOL
205 B
Python

from flask import Flask, request, redirect, url_for, render_template
def create_app():
# create and configure the app
app = Flask(__name__)
app.config.from_pyfile('settings.py')
return app