mirror of
https://github.com/home-assistant/core.git
synced 2026-08-28 10:16:02 -05:00
14 lines
307 B
Python
14 lines
307 B
Python
"""Constants for the Repairs integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
DOMAIN = "repairs"
|
|
|
|
|
|
class FlowType(StrEnum):
|
|
"""Flow types supported in `next_flow` of RepairsFlowResult."""
|
|
|
|
CONFIG_FLOW = "config_flow"
|
|
OPTIONS_FLOW = "options_flow"
|
|
CONFIG_SUBENTRIES_FLOW = "config_subentries_flow"
|