diff --git a/README.md b/README.md index 98ade76..fb04b32 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ specified language. ## Quick start ### Install ```sh +# A dependency +go get golang.org/x/tools/cmd/goimports + +# The granate package go get github.com/granateio/granate ``` diff --git a/main.go b/main.go index 6eb0b9e..b17b27b 100644 --- a/main.go +++ b/main.go @@ -5,6 +5,11 @@ import ( "github.com/granateio/granate/generator" flags "github.com/jessevdk/go-flags" + + // These are imported for convenience so that users don't have to install + // them manually + _ "github.com/graphql-go/relay" + _ "github.com/mitchellh/mapstructure" ) // Flags Code generator options