mirror of
https://github.com/home-assistant/core.git
synced 2026-06-04 14:44:35 +01:00
14 lines
288 B
Python
14 lines
288 B
Python
"""Constants for the Data Grand Lyon integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "data_grand_lyon"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
SUBENTRY_TYPE_STOP = "stop"
|
|
SUBENTRY_TYPE_VELOV_STATION = "velov_station"
|
|
|
|
CONF_LINE = "line"
|
|
CONF_STOP_ID = "stop_id"
|
|
CONF_STATION_ID = "station_id"
|