Some checks failed
Build Heidi Docker image / build-docker (push) Failing after 28s
20 lines
468 B
Python
20 lines
468 B
Python
from enum import Enum
|
|
|
|
|
|
class ConfigSection(Enum):
|
|
FLAGS = "FLAGS"
|
|
ENTRANCE_SOUND = "ENTRANCE.SOUND"
|
|
|
|
|
|
class FlagsConfigKey(Enum):
|
|
DISABLE_JOIN_SOUND_IF_ALONE = "disable_join_sound_if_alone"
|
|
|
|
|
|
# NOTE: This is the default configuration scheme
|
|
USER_CONFIG_SCHEME: dict[str, list[tuple[str, str]]] = {
|
|
ConfigSection.FLAGS.value: [
|
|
(FlagsConfigKey.DISABLE_JOIN_SOUND_IF_ALONE.value, str(True)),
|
|
],
|
|
ConfigSection.ENTRANCE_SOUND.value: [],
|
|
}
|