diff --git a/README.md b/README.md index 005abb9..d651f7b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# gocqlx [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/mmatczuk/gocqlx) [![Go Report Card](https://goreportcard.com/badge/github.com/mmatczuk/gocqlx)](https://goreportcard.com/report/github.com/mmatczuk/gocqlx) [![Build Status](http://img.shields.io/travis/mmatczuk/gocqlx.svg?style=flat-square)](https://travis-ci.org/mmatczuk/gocqlx) +# gocqlx [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/scylladb/gocqlx) [![Go Report Card](https://goreportcard.com/badge/github.com/scylladb/gocqlx)](https://goreportcard.com/report/github.com/scylladb/gocqlx) [![Build Status](http://img.shields.io/travis/scylladb/gocqlx.svg?style=flat-square)](https://travis-ci.org/scylladb/gocqlx) Package `gocqlx` is a `gocql` extension, similar to what `sqlx` is to `database/sql`. @@ -14,8 +14,8 @@ also work with `gocqlx`. ## Installation - go get github.com/mmatczuk/gocqlx + go get github.com/scylladb/gocqlx ## Example -See [example test](https://github.com/mmatczuk/gocqlx/blob/master/example_test.go). +See [example test](https://github.com/scylladb/gocqlx/blob/master/example_test.go). diff --git a/example_test.go b/example_test.go index c43ce3a..0d2bc98 100644 --- a/example_test.go +++ b/example_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/gocql/gocql" - "github.com/mmatczuk/gocqlx" + "github.com/scylladb/gocqlx" ) var personSchema = ` diff --git a/integration_test.go b/integration_test.go index fba869c..07566ae 100644 --- a/integration_test.go +++ b/integration_test.go @@ -10,7 +10,7 @@ import ( "time" "github.com/gocql/gocql" - "github.com/mmatczuk/gocqlx" + "github.com/scylladb/gocqlx" "gopkg.in/inf.v0" )