-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed gotree prune date to cut date
- Loading branch information
1 parent
de3a2f0
commit bdbd8f1
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package cmd | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var cutdateCmd = &cobra.Command{ | ||
Use: "cut", | ||
Short: "Cut the tree", | ||
Long: ``, | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { return }, | ||
} | ||
|
||
func init() { | ||
RootCmd.AddCommand(cutdateCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters