15 lines
271 B
Python
15 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/)",
|
|
},
|
|
}
|