github.com/codykaup/genqlient@v0.6.2/main.go (about)

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