mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-30 05:13:40 +00:00
10 lines
295 B
Python
10 lines
295 B
Python
"""Constants for tibber_prices."""
|
|
|
|
from logging import Logger, getLogger
|
|
|
|
LOGGER: Logger = getLogger(__package__)
|
|
|
|
NAME = "Tibber Price Information & Ratings"
|
|
VERSION = "0.1.0" # Must match version in manifest.json
|
|
DOMAIN = "tibber_prices"
|
|
ATTRIBUTION = "Data provided by https://tibber.com/"
|