mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
19 lines
316 B
Python
19 lines
316 B
Python
"""Constants for the Diagnostics integration."""
|
|
from enum import StrEnum
|
|
|
|
DOMAIN = "diagnostics"
|
|
|
|
REDACTED = "**REDACTED**"
|
|
|
|
|
|
class DiagnosticsType(StrEnum):
|
|
"""Diagnostics types."""
|
|
|
|
CONFIG_ENTRY = "config_entry"
|
|
|
|
|
|
class DiagnosticsSubType(StrEnum):
|
|
"""Diagnostics sub types."""
|
|
|
|
DEVICE = "device"
|