refactor(branding?): swapped all references to db/dbs to store/stores

This commit is contained in:
Lewis Wynne 2025-12-23 09:07:45 +00:00
parent 9467675715
commit 3d5a3f2aa1
27 changed files with 113 additions and 113 deletions

View file

@ -31,14 +31,14 @@ import (
)
var cpCmd = &cobra.Command{
Use: "cp FROM[@DB] TO[@DB]",
Use: "cp FROM[@STORE] TO[@STORE]",
Short: "Make a copy of a key",
Args: cobra.ExactArgs(2),
RunE: cp,
}
var mvCmd = &cobra.Command{
Use: "mv FROM[@DB] TO[@DB]",
Use: "mv FROM[@STORE] TO[@STORE]",
Short: "Move a key",
Args: cobra.ExactArgs(2),
RunE: mv,