6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 15:39:46 +00:00
Files
git-get/cmd/git-list/main.go
2020-05-20 11:37:16 +02:00

25 lines
256 B
Go

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()
}