You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/tools/goctl/api/validate/validate.go

31 lines
530 B
Go

4 years ago
package validate
import (
"errors"
"fmt"
"github.com/logrusorgru/aurora"
"github.com/urfave/cli"
"github.com/zeromicro/go-zero/tools/goctl/api/parser"
4 years ago
)
// GoValidateApi verifies whether the api has a syntax error
4 years ago
func GoValidateApi(c *cli.Context) error {
apiFile := c.String("api")
if len(apiFile) == 0 {
return errors.New("missing -api")
}
spec, err := parser.Parse(apiFile)
if err != nil {
return err
}
err = spec.Validate()
4 years ago
if err == nil {
fmt.Println(aurora.Green("api format ok"))
}
return err
}