10 lines
194 B
Python
10 lines
194 B
Python
|
"""Constants for the Lektrico Charging Station integration."""
|
||
|
|
||
|
from logging import Logger, getLogger
|
||
|
|
||
|
# Integration domain
|
||
|
DOMAIN = "lektrico"
|
||
|
|
||
|
# Logger
|
||
|
LOGGER: Logger = getLogger(__package__)
|