Compare commits

..

No commits in common. "05f13ab87acee32518c794a17b57854f85f38d95" and "2fc2000b111ee69805bb955c0fc9741212973af5" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -273,7 +273,7 @@ gobs-cli scenecollection list
gobs-cli scenecollection current gobs-cli scenecollection current
``` ```
- switch: Switch scene collection. - switch: "Switch scene collection.
- args: Name - args: Name
```console ```console

View File

@ -12,7 +12,7 @@ type ProfileCmd struct {
List ListProfileCmd `help:"List profiles." cmd:"" aliases:"ls"` List ListProfileCmd `help:"List profiles." cmd:"" aliases:"ls"`
Current CurrentProfileCmd `help:"Get current profile." cmd:"" aliases:"c"` Current CurrentProfileCmd `help:"Get current profile." cmd:"" aliases:"c"`
Switch SwitchProfileCmd `help:"Switch profile." cmd:"" aliases:"sw"` Switch SwitchProfileCmd `help:"Switch profile." cmd:"" aliases:"sw"`
Create CreateProfileCmd `help:"Create profile." cmd:"" aliases:"new"` Create CreateProfileCmd `help:"Create profile." cmd:"" aliases:"cr"`
Remove RemoveProfileCmd `help:"Remove profile." cmd:"" aliases:"rm"` Remove RemoveProfileCmd `help:"Remove profile." cmd:"" aliases:"rm"`
} }

View File

@ -11,7 +11,7 @@ type SceneCollectionCmd struct {
List ListSceneCollectionCmd `help:"List scene collections." cmd:"" aliases:"ls"` List ListSceneCollectionCmd `help:"List scene collections." cmd:"" aliases:"ls"`
Current CurrentSceneCollectionCmd `help:"Get current scene collection." cmd:"" aliases:"c"` Current CurrentSceneCollectionCmd `help:"Get current scene collection." cmd:"" aliases:"c"`
Switch SwitchSceneCollectionCmd `help:"Switch scene collection." cmd:"" aliases:"sw"` Switch SwitchSceneCollectionCmd `help:"Switch scene collection." cmd:"" aliases:"sw"`
Create CreateSceneCollectionCmd `help:"Create scene collection." cmd:"" aliases:"new"` Create CreateSceneCollectionCmd `help:"Create scene collection." cmd:"" aliases:"cr"`
} }
// ListSceneCollectionCmd provides a command to list all scene collections. // ListSceneCollectionCmd provides a command to list all scene collections.