feat: catch & log invalid items to discord webhook

This commit is contained in:
kittentm 2026-03-15 00:22:58 +01:00
commit 884ef30c79
No known key found for this signature in database
GPG key ID: 520EDAA0C8CDE295
6 changed files with 968 additions and 2 deletions

View file

@ -14,6 +14,7 @@ class Settings(BaseSettings):
model_config = SettingsConfigDict(env_file=".env", extra="ignore")
cookie_secure: bool = True
webhook_url: str
settings = Settings()
cipher = Fernet(settings.fernet_key.encode())