mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00

* 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",
|
|
}
|