github.phpd.cn/thought-machine/please@v12.2.0+incompatible/src/parse/args/main.go (about) 1 // Package main implements a simple binary to print out builtin rules. 2 // This all seems pretty fiddly and complex at this point; it avoids circular 3 // dependencies but also seems unnecessary given that ultimately plz has a command 4 // to do this itself. 5 package main 6 7 import ( 8 "core" 9 "parse" 10 ) 11 12 func main() { 13 parse.PrintRuleArgs(core.NewDefaultBuildState(), nil) 14 }