aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/root.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/root.go')
-rw-r--r--src/cmd/root.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/cmd/root.go b/src/cmd/root.go
deleted file mode 100644
index e0164a7..0000000
--- a/src/cmd/root.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package cmd
-
-import (
- "fmt"
- "os"
-
- "github.com/spf13/cobra"
-)
-
-var rootCmd = &cobra.Command{
- Use: "golings",
- Short: "Learn go through interactive exercises",
- Run: func(cmd *cobra.Command, args []string) {
-
- },
-}
-
-func Execute() {
- if err := rootCmd.Execute(); err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
-}