craftbeerpi4-pione/cbpi/api/config.py

12 lines
179 B
Python
Raw Normal View History

2019-01-05 20:43:48 +01:00
from enum import Enum
class ConfigType(Enum):
STRING = "string"
NUMBER = "number"
SELECT = "select"
2021-02-27 20:09:19 +01:00
KETTLE = "kettle"
ACTOR = "actor"
SENSOR = "sensor"
2019-01-05 20:43:48 +01:00