From c541ea2c6503afb2c4e3a0c8e33ff155f07c88c3 Mon Sep 17 00:00:00 2001 From: rajukumaryb <49075096+rajukumaryb@users.noreply.github.com> Date: Fri, 17 May 2019 15:04:54 -0700 Subject: [PATCH] Switch Go driver to fork (#87) --- docs/content/latest/develop/build-apps/ycql/go.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/latest/develop/build-apps/ycql/go.md b/docs/content/latest/develop/build-apps/ycql/go.md index ca30d8c0473e..a3b2b02bf7f2 100644 --- a/docs/content/latest/develop/build-apps/ycql/go.md +++ b/docs/content/latest/develop/build-apps/ycql/go.md @@ -10,7 +10,7 @@ This tutorial assumes that you have: To install the driver locally run: ```sh -$ go get github.com/gocql/gocql +$ go get github.com/yugabyte/gocql ``` ## Writing a HelloWorld CQL app @@ -25,7 +25,7 @@ import ( "log" "time" - "github.com/gocql/gocql" + "github.com/yugabyte/gocql" ) func main() {