* Migrate Flu Near You to DataUpdateCoordinator * Prefer partial over lambda * Remove overlap with CoordinatorEntity
10 lines
220 B
Python
10 lines
220 B
Python
"""Define flunearyou constants."""
|
|
import logging
|
|
|
|
DOMAIN = "flunearyou"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DATA_COORDINATOR = "coordinator"
|
|
|
|
CATEGORY_CDC_REPORT = "cdc_report"
|
|
CATEGORY_USER_REPORT = "user_report"
|