Skip to content

Commit

Permalink
git: unpack-file
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Aug 15, 2024
1 parent da21659 commit 99a4e5b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import (
"github.com/spf13/cobra"
)

var unpack_fileCmd = &cobra.Command{
var unpackFileCmd = &cobra.Command{
Use: "unpack-file",
Short: "Creates a temporary file with a blob's contents",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_low_level_interrogator].ID,
}

func init() {
carapace.Gen(unpack_fileCmd).Standalone()
carapace.Gen(unpackFileCmd).Standalone()

rootCmd.AddCommand(unpack_fileCmd)
rootCmd.AddCommand(unpackFileCmd)
}

0 comments on commit 99a4e5b

Please sign in to comment.