mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 00:05:33 +01:00
12 lines
261 B
Python
12 lines
261 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"}
|