mirror of https://github.com/home-assistant/core
20 lines
317 B
Python
20 lines
317 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"
|