6
0
mirror of https://github.com/grdl/git-get.git synced 2026-03-22 18:05:07 +00:00

Remove git-list command

This commit is contained in:
Grzegorz Dlugoszewski
2020-05-30 13:52:38 +02:00
parent f9c362a53e
commit 3d18b664e9

View File

@@ -1,24 +0,0 @@
package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var cmd = &cobra.Command{
Use: "git-list",
Short: "git list",
}
func Execute() {
if err := cmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func main() {
Execute()
}