From 05f13ab87acee32518c794a17b57854f85f38d95 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 26 Apr 2025 16:16:33 +0100 Subject: [PATCH] upd create alias --- profile.go | 2 +- scenecollection.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/profile.go b/profile.go index 96f4cab..8e5a48c 100644 --- a/profile.go +++ b/profile.go @@ -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"` } diff --git a/scenecollection.go b/scenecollection.go index 7663ef3..7fb5f97 100644 --- a/scenecollection.go +++ b/scenecollection.go @@ -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.