tuxbot-bot/tuxbot/cogs/Dev/config.py

16 lines
271 B
Python

from structured_config import Structure, StrField
HAS_MODELS = False
class DevConfig(Structure):
sentryKey: str = StrField("")
extra = {
"sentryKey": {
"type": str,
"description": "Sentry KEY for error logging (https://sentry.io/)",
},
}