Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Lektrico Charging Station integration."""
2 
3 from logging import Logger, getLogger
4 
5 # Integration domain
6 DOMAIN = "lektrico"
7 
8 # Logger
9 LOGGER: Logger = getLogger(__package__)