mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2025-06-27 22:10:29 +01:00
7 lines
151 B
Python
7 lines
151 B
Python
"""module for console output handling in obsws_cli."""
|
|
|
|
from rich.console import Console
|
|
|
|
out = Console()
|
|
err = Console(stderr=True, style='bold red')
|