mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
12 lines
181 B
Go
12 lines
181 B
Go
|
package bug
|
||
|
|
||
|
import "github.com/spf13/cobra"
|
||
|
|
||
|
// Cmd describes a bug command.
|
||
|
var Cmd = &cobra.Command{
|
||
|
Use: "bug",
|
||
|
Short: "Report a bug",
|
||
|
Args: cobra.NoArgs,
|
||
|
RunE: runE,
|
||
|
}
|