From e2536be56e309383a69d700e7bf24ec193147de6 Mon Sep 17 00:00:00 2001 From: Vincent Composieux Date: Tue, 28 Aug 2018 17:21:02 +0200 Subject: [PATCH] Added go module files --- go.mod | 8 ++++++++ go.sum | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6687ba2 --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module github.com/eko/graphql-go-structure + +require ( + github.com/dgrijalva/jwt-go v3.0.0+incompatible + github.com/graphql-go/graphql v0.6.0 + github.com/graphql-go/handler v0.1.0 + golang.org/x/net v0.0.0-20170529214944-3da985ce5951 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..bf5c361 --- /dev/null +++ b/go.sum @@ -0,0 +1,7 @@ +github.com/dgrijalva/jwt-go v3.0.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/graphql-go/graphql v0.6.0 h1:GfvaRDnzkyp160/2WebwvLiXCaAJci87G/FSsFwe4zY= +github.com/graphql-go/graphql v0.6.0/go.mod h1:k6yrAYQaSP59DC5UVxbgxESlmVyojThKdORUqGDGmrI= +github.com/graphql-go/handler v0.1.0 h1:ohBnhJfp19HdiJGMJEJgJDxdv0SjiZn8uzuD3O1AoEY= +github.com/graphql-go/handler v0.1.0/go.mod h1:leLF6RpV5uZMN1CdImAxuiayrYYhOk33bZciaUGaXeU= +golang.org/x/net v0.0.0-20170529214944-3da985ce5951 h1:SGPsCZyShalq+f5tfept66KZ99rRCUajx5AN8oagSNU= +golang.org/x/net v0.0.0-20170529214944-3da985ce5951/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=