Files
2026-07-13 13:08:41 +08:00

9 lines
133 B
Python

from enum import Enum
class Verbosity(str, Enum):
CONCISE = "concise"
STANDARD = "standard"
TEXT_HEAVY = "text-heavy"