add scene-collection group

updated README

minor bump
This commit is contained in:
2025-04-20 17:46:03 +01:00
parent 5852dd4836
commit 9901a6b295
5 changed files with 98 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import typer
from pydantic import ConfigDict
from pydantic_settings import BaseSettings
from . import group, input, record, scene, sceneitem, stream
from . import group, input, record, scene, scenecollection, sceneitem, stream
class Settings(BaseSettings):
@@ -36,6 +36,7 @@ app.add_typer(group.app, name='group')
app.add_typer(input.app, name='input')
app.add_typer(record.app, name='record')
app.add_typer(stream.app, name='stream')
app.add_typer(scenecollection.app, name='scene-collection')
@app.command()