mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 15:10:01 +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,
|
||
|
|
}
|