TelegramAktienBot/api/app.py

13 lines
309 B
Python
Raw 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
2023-03-28 09:58:14 +00:00
application = create_app('config/flask.cfg')
application.run()