mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 17:49:37 +01:00
33a23ad1c6
* add diagnostics for the active subcription * fix mapping between api and ha states for subscription * multiline lambda
10 lines
159 B
Python
10 lines
159 B
Python
"""Constants for the Cookidoo integration."""
|
|
|
|
DOMAIN = "cookidoo"
|
|
|
|
SUBSCRIPTION_MAP = {
|
|
"NONE": "free",
|
|
"TRIAL": "trial",
|
|
"REGULAR": "premium",
|
|
}
|