This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
consumer-api/app.py

17 lines
333 B
Python
Raw Normal View History

2020-03-29 12:45:16 +02:00
#!/usr/bin/env python
import sentry_sdk
"""
Main Flask RESTful API
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "app"
__version__text__ = "1"
2020-03-29 12:46:22 +02:00
sentry_sdk.init("https://0a106e104e114bc9a3fa47f9cb0db2f4@sentry.kmlabz.com/10")
2020-03-29 12:45:16 +02:00
if __name__ == "__main__":
2020-03-29 13:35:19 +02:00
print("Producer")