Files
nixprstatus/nixprstatus/output.py
Torjus Håkestad 3064d0231c
All checks were successful
test / test (pull_request) Successful in 36s
build / build (pull_request) Successful in 2m53s
Simplify printing
2024-10-10 00:59:43 +02:00

7 lines
97 B
Python

from enum import Enum
class OutputFormat(str, Enum):
CONSOLE = "console"
JSON = "json"