mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-27 01:08:12 +01:00
12 lines
179 B
Python
12 lines
179 B
Python
|
from enum import Enum
|
||
|
|
||
|
class ConfigType(Enum):
|
||
|
STRING = "string"
|
||
|
NUMBER = "number"
|
||
|
SELECT = "select"
|
||
|
KETTLE = "kettle"
|
||
|
ACTOR = "actor"
|
||
|
SENSOR = "sensor"
|
||
|
|
||
|
|