From 971da82c8e3d1cf7cca31bb9cfff91cab2a460d3 Mon Sep 17 00:00:00 2001 From: Sayan Mallick Date: Sat, 13 Feb 2021 10:10:16 +0530 Subject: [PATCH] Updated gin.md --- docs/content/recipes/gin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/recipes/gin.md b/docs/content/recipes/gin.md index 76f935cc58..27b073aca7 100644 --- a/docs/content/recipes/gin.md +++ b/docs/content/recipes/gin.md @@ -20,8 +20,8 @@ In your router file, define the handlers for the GraphQL and Playground endpoint ```go import ( - "api/graph" - "api/graph/generated" + "github.com/[username]/gqlgen-todos/graph" // Replace username with your github username + "github.com/[username]/gqlgen-todos/graph/generated" // Replace username with your github username "github.com/gin-gonic/gin" "github.com/99designs/gqlgen/graphql/handler"