2020-11-08 01:07:27 +01:00
|
|
|
from structured_config import Structure, StrField
|
|
|
|
|
|
|
|
HAS_MODELS = False
|
|
|
|
|
|
|
|
|
|
|
|
class DevConfig(Structure):
|
2021-01-27 15:14:05 +01:00
|
|
|
sentryKey: str = StrField("")
|
2020-11-08 01:07:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
extra = {
|
2021-01-27 15:14:05 +01:00
|
|
|
"sentryKey": {
|
2020-11-08 01:07:27 +01:00
|
|
|
"type": str,
|
2021-01-27 15:14:05 +01:00
|
|
|
"description": "Sentry KEY for error logging (https://sentry.io/)",
|
2020-11-08 01:07:27 +01:00
|
|
|
},
|
|
|
|
}
|