mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2025-01-05 12:21:44 +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"
|
|
|
|
|