mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-22 23:51:16 +00:00
21 lines
406 B
Go
21 lines
406 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rsteube/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var manifest_rmCmd = &cobra.Command{
|
|
Use: "rm MANIFEST_LIST [MANIFEST_LIST...]",
|
|
Short: "Delete one or more manifest lists from local storage",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(manifest_rmCmd).Standalone()
|
|
|
|
manifestCmd.AddCommand(manifest_rmCmd)
|
|
|
|
// TODO completion
|
|
}
|