mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 04:07:51 +00:00
11 lines
228 B
Python
11 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__)
|