makeshift/cmd/list.go

10 lines
145 B
Go

package cmd
import "github.com/spf13/cobra"
var listCmd = &cobra.Command{
Use: "list",
Run: func(cmd *cobra.Command, args []string) {
},
}