9 lines
151 B
Python
9 lines
151 B
Python
"""Constants for the zeversolar integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "zeversolar"
|
|
|
|
PLATFORMS = [
|
|
Platform.SENSOR,
|
|
]
|