mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
12 lines
195 B
Python
12 lines
195 B
Python
"""Constants for the Dexcom integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "dexcom"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
CONF_SERVER = "server"
|
|
|
|
SERVER_OUS = "EU"
|
|
SERVER_US = "US"
|