fill out the easy parts of the codegen

This commit is contained in:
Ben Kraft
2019-12-23 21:07:07 -05:00
parent efa9ccd122
commit 7a20e2ae74
5 changed files with 100 additions and 25 deletions
+1 -8
View File
@@ -1,16 +1,9 @@
package main
import (
"fmt"
"os"
"github.com/Khan/genql/generate"
)
func main() {
err := generate.Generate()
if err != nil {
fmt.Println(fmt.Errorf("genql failed: %v", err))
os.Exit(1)
}
generate.Main()
}