core/homeassistant/components/powerfox/const.py

12 lines
259 B
Python
Raw Normal View History

2024-12-03 23:35:50 +00:00
"""Constants for the Powerfox integration."""
from __future__ import annotations
from datetime import timedelta
import logging
from typing import Final
DOMAIN: Final = "powerfox"
LOGGER = logging.getLogger(__package__)
SCAN_INTERVAL = timedelta(minutes=1)