go-zero/tools/goctl/api/validate/validate.go

26 lines
469 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package validate
import (
"errors"
"fmt"
"github.com/logrusorgru/aurora"
2020-08-08 16:40:10 +08:00
"github.com/tal-tech/go-zero/tools/goctl/api/parser"
2020-07-29 17:11:41 +08:00
"github.com/urfave/cli"
)
// GoValidateApi verifies whether the api has a syntax error
2020-07-29 17:11:41 +08:00
func GoValidateApi(c *cli.Context) error {
apiFile := c.String("api")
if len(apiFile) == 0 {
return errors.New("missing -api")
}
_, err := parser.Parse(apiFile)
2020-07-29 17:11:41 +08:00
if err == nil {
fmt.Println(aurora.Green("api format ok"))
}
return err
}