mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
8 lines
115 B
Python
8 lines
115 B
Python
from enum import Enum
|
|
|
|
class ConfigType(Enum):
|
|
STRING = "string"
|
|
NUMBER = "number"
|
|
SELECT = "select"
|
|
|
|
|