mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2025-07-19 03:11:47 +00:00
11 lines
190 B
Python
11 lines
190 B
Python
"""module for exit codes used in the application."""
|
|
|
|
from enum import IntEnum, auto
|
|
|
|
|
|
class ExitCode(IntEnum):
|
|
"""Exit codes for the application."""
|
|
|
|
SUCCESS = 0
|
|
ERROR = auto()
|