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