mirror of
https://github.com/home-assistant/core.git
synced 2025-05-02 13:17:53 +00:00
14 lines
212 B
Python
14 lines
212 B
Python
"""Constants for the JustNimbus integration."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "justnimbus"
|
|
|
|
PLATFORMS = [
|
|
Platform.SENSOR,
|
|
]
|
|
|
|
CONF_ZIP_CODE: Final = "zip_code"
|