fail fast when rolling window size is zero

This commit is contained in:
kevin
2020-10-15 11:40:31 +08:00
parent 6f49639f80
commit c824e9e118
3 changed files with 11 additions and 21 deletions

View File

@@ -1,21 +0,0 @@
package main
import (
"fmt"
"os"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/tools/goctl/api/parser"
)
func main() {
if len(os.Args) <= 1 {
return
}
p, err := parser.NewParser(os.Args[1])
logx.Must(err)
api, err := p.Parse()
logx.Must(err)
fmt.Println(api)
}