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.
37 lines
635 B
Go
37 lines
635 B
Go
4 years ago
|
package ktgen
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"github.com/tal-tech/go-zero/core/lang"
|
||
|
"github.com/tal-tech/go-zero/tools/goctl/api/parser"
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
func KtCommand(c *cli.Context) error {
|
||
|
apiFile := c.String("api")
|
||
|
if apiFile == "" {
|
||
|
return errors.New("missing -api")
|
||
|
}
|
||
|
dir := c.String("dir")
|
||
|
if dir == "" {
|
||
|
return errors.New("missing -dir")
|
||
|
}
|
||
|
pkg := c.String("pkg")
|
||
|
if pkg == "" {
|
||
|
return errors.New("missing -pkg")
|
||
|
}
|
||
|
|
||
|
p, e := parser.NewParser(apiFile)
|
||
|
if e != nil {
|
||
|
return e
|
||
|
}
|
||
|
api,e:=p.Parse()
|
||
|
if e!=nil {
|
||
|
return e
|
||
|
}
|
||
|
|
||
|
lang.Must(genBase(dir,pkg,api))
|
||
|
lang.Must(genApi(dir,pkg, api))
|
||
|
return nil
|
||
|
}
|