mirror of
https://github.com/home-assistant/core.git
synced 2025-06-29 09:27:08 +00: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"}
|