Skip to content

Commit

Permalink
add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
AshutoshPatole committed Aug 10, 2024
1 parent 1e6ce87 commit 50574f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.json
7 changes: 1 addition & 6 deletions cmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ import (
var pullCmd = &cobra.Command{
Use: "pull",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("pull called")
},
Expand Down
7 changes: 1 addition & 6 deletions cmd/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ import (
var pushCmd = &cobra.Command{
Use: "push",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("push called")
},
Expand Down
7 changes: 1 addition & 6 deletions cmd/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ import (
var syncCmd = &cobra.Command{
Use: "sync",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("sync called")
},
Expand Down

0 comments on commit 50574f4

Please sign in to comment.