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