git-bug/graphql/gen_graphql.go

16 lines
163 B
Go
Raw Normal View History

// +build ignore
package main
import (
"fmt"
2018-12-23 19:11:37 +03:00
"github.com/99designs/gqlgen/cmd"
)
func main() {
fmt.Println("Generating graphql code ...")
2018-12-23 19:11:37 +03:00
cmd.Execute()
}