github.com/opiuman/genqlient@v1.0.0/main.go (about)

     1  // genqlient is a GraphQL client generator for Go.
     2  //
     3  // To run genqlient:
     4  //	go run github.com/opiuman/genqlient
     5  // For programmatic access, see the "generate" package, below.  For
     6  // user documentation, see github.com/opiuman/genqlient.
     7  package main
     8  
     9  import (
    10  	"github.com/opiuman/genqlient/generate"
    11  )
    12  
    13  func main() {
    14  	generate.Main()
    15  }