mirror of
https://github.com/elisspace/core.git
synced 2026-09-22 10:37:40 +00:00
12 lines
276 B
Python
12 lines
276 B
Python
"""Constants for the WattTime integration."""
|
|
import logging
|
|
|
|
DOMAIN = "watttime"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_BALANCING_AUTHORITY = "balancing_authority"
|
|
CONF_BALANCING_AUTHORITY_ABBREV = "balancing_authority_abbreviation"
|
|
|
|
DATA_COORDINATOR = "coordinator"
|