mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-12 13:01:51 +00:00
10 lines
180 B
Python
10 lines
180 B
Python
|
import os
|
||
|
|
||
|
import sentry_sdk
|
||
|
from sentry_sdk.integrations.rq import RqIntegration
|
||
|
|
||
|
sentry_sdk.init(
|
||
|
os.environ.get('PROXSTAR_SENTRY_DSN'),
|
||
|
integrations=[RqIntegration()]
|
||
|
)
|