Torma Kristóf
cef93181fd
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
333 B
Python
17 lines
333 B
Python
#!/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"
|
|
|
|
sentry_sdk.init("https://0a106e104e114bc9a3fa47f9cb0db2f4@sentry.kmlabz.com/10")
|
|
|
|
if __name__ == "__main__":
|
|
print("Producer")
|