casait-has/custom_components/smart_home/const.py

18 lines
340 B
Python
Raw Normal View History

2025-01-03 22:01:49 +01:00
"""Constants for the Smart Home integration."""
from typing import Final
DOMAIN: Final = "smart_home"
CONF_HOST: Final = "host"
CONF_PORT: Final = "port"
CONF_NAME: Final = "name"
DEFAULT_PORT: Final = 5000
# Config flow and options flow
STEP_USER: Final = "user"
DATA_COORDINATOR: Final = "coordinator"
DATA_CONFIG: Final = "config"
2025-01-16 22:57:55 +01:00