mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
19 lines
340 B
Python
19 lines
340 B
Python
"""Constants for the Diagnostics integration."""
|
|
from homeassistant.backports.enum import StrEnum
|
|
|
|
DOMAIN = "diagnostics"
|
|
|
|
REDACTED = "**REDACTED**"
|
|
|
|
|
|
class DiagnosticsType(StrEnum):
|
|
"""Diagnostics types."""
|
|
|
|
CONFIG_ENTRY = "config_entry"
|
|
|
|
|
|
class DiagnosticsSubType(StrEnum):
|
|
"""Diagnostics sub types."""
|
|
|
|
DEVICE = "device"
|