mirror of
https://github.com/flibusta-apps/batch_downloader.git
synced 2025-12-06 06:15:37 +01:00
12 lines
180 B
Python
12 lines
180 B
Python
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()
|