mirror of
https://github.com/vee1e/flare-floss.git
synced 2026-09-01 17:57:06 +00:00
6 lines
84 B
Python
6 lines
84 B
Python
from enum import Enum
|
|
|
|
|
|
class Verbosity(int, Enum):
|
|
DEFAULT = 0
|
|
VERBOSE = 1
|