mirror of
https://github.com/home-assistant/core.git
synced 2025-07-04 11:57:05 +00:00
13 lines
299 B
Python
13 lines
299 B
Python
"""Adds constants for Trafikverket Train integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "trafikverket_train"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
ATTRIBUTION = "Data provided by Trafikverket"
|
|
|
|
CONF_FROM = "from"
|
|
CONF_TO = "to"
|
|
CONF_TIME = "time"
|
|
CONF_FILTER_PRODUCT = "filter_product"
|