Compare commits

..

2 Commits

Author SHA1 Message Date
05f13ab87a upd create alias 2025-04-26 16:16:33 +01:00
71300a416b typo 2025-04-26 14:03:30 +01:00
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -12,7 +12,7 @@ type ProfileCmd struct {
List ListProfileCmd `help:"List profiles." cmd:"" aliases:"ls"`
Current CurrentProfileCmd `help:"Get current profile." cmd:"" aliases:"c"`
Switch SwitchProfileCmd `help:"Switch profile." cmd:"" aliases:"sw"`
Create CreateProfileCmd `help:"Create profile." cmd:"" aliases:"cr"`
Create CreateProfileCmd `help:"Create profile." cmd:"" aliases:"new"`
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"`
Current CurrentSceneCollectionCmd `help:"Get current scene collection." cmd:"" aliases:"c"`
Switch SwitchSceneCollectionCmd `help:"Switch scene collection." cmd:"" aliases:"sw"`
Create CreateSceneCollectionCmd `help:"Create scene collection." cmd:"" aliases:"cr"`
Create CreateSceneCollectionCmd `help:"Create scene collection." cmd:"" aliases:"new"`
}
// ListSceneCollectionCmd provides a command to list all scene collections.