11 lines
164 B
Go
11 lines
164 B
Go
// package main is at the root to allow "go run github.com/Khan/genql"
|
|
package main
|
|
|
|
import (
|
|
"github.com/Khan/genql/generate"
|
|
)
|
|
|
|
func main() {
|
|
generate.Main()
|
|
}
|