Files
go-zero/tools/goctl/feature/feature.go

19 lines
268 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package feature
import (
"fmt"
"github.com/logrusorgru/aurora"
"github.com/urfave/cli"
)
var feature = `
2020-08-16 23:28:01 +08:00
1增加goctl model支持
2020-07-29 17:11:41 +08:00
`
2020-08-16 23:28:01 +08:00
func Feature(_ *cli.Context) error {
2020-07-29 17:11:41 +08:00
fmt.Println(aurora.Blue("\nFEATURE:"))
fmt.Println(aurora.Blue(feature))
return nil
}