This commit is contained in:
2023-06-06 01:02:13 +02:00
parent 40994db39d
commit 08e7a049b4
23 changed files with 1890 additions and 0 deletions

11
src/main.py Normal file
View File

@@ -0,0 +1,11 @@
import sentry_sdk
from core.app import start_app
from core.config import env_config
if env_config.SENTRY_DSN:
sentry_sdk.init(dsn=env_config.SENTRY_DSN)
app = start_app()