Add sentry

This commit is contained in:
2022-04-24 15:47:22 +03:00
parent 7db83cd14b
commit f28d3048ac
5 changed files with 69 additions and 1 deletions

8
app/config.py Normal file
View File

@@ -0,0 +1,8 @@
from pydantic import BaseSettings
class EnvConfig(BaseSettings):
SENTRY_DSN: str
env_config = EnvConfig()