From 6f5d433e33b5432887a8496074f0d7c7048c1167 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 16 Sep 2018 13:50:53 +0200 Subject: docs & cleaning --- graphql/handler.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'graphql/handler.go') diff --git a/graphql/handler.go b/graphql/handler.go index 7b940d8f..ed5047c4 100644 --- a/graphql/handler.go +++ b/graphql/handler.go @@ -1,5 +1,6 @@ //go:generate go run gen_graphql.go +// Package graphql contains the root GraphQL http handler package graphql import ( @@ -10,6 +11,7 @@ import ( "net/http" ) +// Handler is the root GraphQL http handler type Handler struct { http.HandlerFunc *resolvers.RootResolver -- cgit