mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2025-07-18 02:41:47 +00:00
16 lines
296 B
Python
16 lines
296 B
Python
"""module for managing the application context."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
import obsws_python as obsws
|
|
|
|
from . import styles
|
|
|
|
|
|
@dataclass
|
|
class Context:
|
|
"""Context for the application, holding OBS and style configurations."""
|
|
|
|
client: obsws.ReqClient
|
|
style: styles.Style
|