Its own module rather than a package under shared, so cobra and pflag stay out of the module graphs of server, admin and sitesvc, which never use them.
8 lines
171 B
Go
8 lines
171 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func newInspectCmd() *cobra.Command {
|
|
return &cobra.Command{Use: "inspect ARCHIVE", Short: "Print an archive's manifest"}
|
|
}
|