hass-core/homeassistant/components/cpuspeed/const.py
2021-12-28 21:17:53 +01:00

10 lines
228 B
Python

"""Constants for the CPU Speed integration."""
import logging
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "cpuspeed"
PLATFORMS = [Platform.SENSOR]
LOGGER = logging.getLogger(__package__)