TelegramAktienBot/api/app.py

13 lines
367 B
Python
Raw Permalink Normal View History

2022-04-12 07:50:24 +00:00
__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
2022-09-18 13:24:22 +00:00
2022-04-04 13:11:07 +00:00
# Create an application instance that web servers can use.
application = create_app('config/flask.cfg')
application.run()