7 lines
97 B
Python
7 lines
97 B
Python
from enum import Enum
|
|
|
|
|
|
class OutputFormat(str, Enum):
|
|
CONSOLE = "console"
|
|
JSON = "json"
|