github.com/roneli/gqlgen@v0.7.2/main.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"os"
     6  
     7  	"github.com/99designs/gqlgen/cmd"
     8  )
     9  
    10  func main() {
    11  	fmt.Fprintf(os.Stderr, "warning: running gqlgen from this binary is deprecated and may be removed in a future release. See https://github.com/99designs/gqlgen/issues/415\n")
    12  	cmd.Execute()
    13  }