12 lines
273 B
Python
12 lines
273 B
Python
"""Constants for the tankerkoenig integration."""
|
|
|
|
DOMAIN = "tankerkoenig"
|
|
NAME = "tankerkoenig"
|
|
|
|
CONF_FUEL_TYPES = "fuel_types"
|
|
CONF_STATIONS = "stations"
|
|
|
|
DEFAULT_RADIUS = 2
|
|
DEFAULT_SCAN_INTERVAL = 30
|
|
|
|
FUEL_TYPES = {"e5": "Super", "e10": "Super E10", "diesel": "Diesel"}
|