Add sentry

This commit is contained in:
2022-04-24 14:32:40 +03:00
parent 44dcde0df8
commit 6f859445c8
7 changed files with 67 additions and 3 deletions

8
src/core/sentry.py Normal file
View File

@@ -0,0 +1,8 @@
import sentry_sdk
from core.config import env_config
sentry_sdk.init(
env_config.SENTRY_SDN,
)