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-scheduler/app.py

17 lines
331 B
Python
Raw Normal View History

2020-03-29 16:48:34 +02:00
#!/usr/bin/env python
import sentry_sdk
"""
2020-03-29 17:00:35 +02:00
Scheduler
2020-03-29 16:48:34 +02:00
"""
2020-03-29 17:11:26 +02:00
__author__ = "@tormachris"
2020-03-29 16:48:34 +02:00
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "app"
__version__text__ = "1"
2020-03-29 17:04:12 +02:00
sentry_sdk.init("https://1b2c8467076c4e2e9158b60a4bb96bdc@sentry.kmlabz.com/11")
2020-03-29 16:48:34 +02:00
if __name__ == "__main__":
2020-03-29 17:11:46 +02:00
print("Consumer-Scheduler")