TelegramAktienBot/api/app.py
H4CK3R-01 e435628690
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Fixed frontend build
2022-09-18 15:24:22 +02:00

13 lines
367 B
Python

__author__ = "Florian Kaiser"
__copyright__ = "Copyright 2022, Project Aktienbot"
__credits__ = ["Florian Kaiser", "Florian Kellermann", "Linus Eickhof", "Kevin Pauer"]
__license__ = "GPL 3.0"
__version__ = "1.0.0"
from app import create_app
# Create an application instance that web servers can use.
application = create_app('config/flask.cfg')
application.run()