mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2026-04-18 06:53:38 +00:00
rename item command group to scene-item
update tests, rename test_item.py to test_sceneitem.py update README minor bump
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online>
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
__version__ = "0.2.0"
|
||||
__version__ = "0.3.0"
|
||||
|
||||
@@ -8,7 +8,7 @@ import typer
|
||||
from pydantic import ConfigDict
|
||||
from pydantic_settings import BaseSettings
|
||||
|
||||
from . import group, input, item, record, scene, stream
|
||||
from . import group, input, record, scene, sceneitem, stream
|
||||
|
||||
|
||||
class Settings(BaseSettings):
|
||||
@@ -31,7 +31,7 @@ class Settings(BaseSettings):
|
||||
|
||||
app = typer.Typer()
|
||||
app.add_typer(scene.app, name='scene')
|
||||
app.add_typer(item.app, name='item')
|
||||
app.add_typer(sceneitem.app, name='scene-item')
|
||||
app.add_typer(group.app, name='group')
|
||||
app.add_typer(input.app, name='input')
|
||||
app.add_typer(record.app, name='record')
|
||||
|
||||
Reference in New Issue
Block a user