2022-08-08 21:35:05 +00:00
|
|
|
"""Constants for the JustNimbus integration."""
|
|
|
|
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
|
|
|
|
DOMAIN = "justnimbus"
|
|
|
|
|
|
|
|
PLATFORMS = [
|
|
|
|
Platform.SENSOR,
|
|
|
|
]
|
2024-01-23 07:56:11 +00:00
|
|
|
|
|
|
|
CONF_ZIP_CODE: Final = "zip_code"
|