7 lines
241 B
Python
7 lines
241 B
Python
"""Adds constants for Trafikverket Weather integration."""
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "trafikverket_weatherstation"
|
|
CONF_STATION = "station"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
ATTRIBUTION = "Data provided by Trafikverket"
|