11 lines
260 B
Python
11 lines
260 B
Python
|
"""Constants for the World Air Quality Index (WAQI) integration."""
|
||
|
import logging
|
||
|
|
||
|
DOMAIN = "waqi"
|
||
|
|
||
|
LOGGER = logging.getLogger(__package__)
|
||
|
|
||
|
CONF_STATION_NUMBER = "station_number"
|
||
|
|
||
|
ISSUE_PLACEHOLDER = {"url": "/config/integrations/dashboard/add?domain=waqi"}
|