repositorypackage
0.0.0-20160921055525-cef5a61bd62b
Repository: https://github.com/mnmtanish/go-graphiql.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
go-graphiql
Go http handler to serve the graphiql in-browser IDE.
package main
import (
"net/http"
"github.com/mnmtanish/go-graphiql"
)
func main() {
http.HandleFunc("/graphql", myGraphQLHandler)
http.HandleFunc("/", graphiql.ServeGraphiQL)
http.ListenAndServe(":9001", nil)
}