2023-01-06 20:41:46 +00:00
|
|
|
"""Constants for the Whirlpool Appliances integration."""
|
2021-09-13 20:02:34 +00:00
|
|
|
|
2022-12-30 08:13:47 +00:00
|
|
|
from whirlpool.backendselector import Region
|
|
|
|
|
2021-09-13 20:02:34 +00:00
|
|
|
DOMAIN = "whirlpool"
|
2022-12-30 08:13:47 +00:00
|
|
|
|
|
|
|
CONF_REGIONS_MAP = {
|
|
|
|
"EU": Region.EU,
|
|
|
|
"US": Region.US,
|
|
|
|
}
|