13 lines
212 B
Python
13 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"
|