12 lines
240 B
Go
12 lines
240 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var prDescribeCmd = &cobra.Command{
|
|
Use: "pr-describe",
|
|
Short: "Generate full PR description from current branch",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// TODO: implement
|
|
},
|
|
}
|