diff --git a/README.md b/README.md index ed9abcf..ea23d84 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Go Rev.ai -[![Go Report Card](https://goreportcard.com/badge/github.com/oriiolabs/revai-go)](https://goreportcard.com/report/github.com/oriiolabs/revai-go) -[![GoDoc](http://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/oriiolabs/revai-go) +[![Go Report Card](https://goreportcard.com/badge/github.com/descriptinc/revai-go)](https://goreportcard.com/report/github.com/descriptinc/revai-go) +[![GoDoc](http://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/descriptinc/revai-go) A [Rev.ai](https://rev.ai) Go client library. @@ -9,20 +9,20 @@ A [Rev.ai](https://rev.ai) Go client library. Install revai-go with: ```sh -go get -u github.com/oriiolabs/revai-go +go get -u github.com/descriptinc/revai-go ``` Then, import it using: ``` go import ( - "github.com/oriiolabs/revai-go" + "github.com/descriptinc/revai-go" ) ``` ## Documentation -For details on all the functionality in this library, see the [GoDoc](http://godoc.org/github.com/oriiolabs/revai-go) +For details on all the functionality in this library, see the [GoDoc](http://godoc.org/github.com/descriptinc/revai-go) documentation. Below are a few simple examples: diff --git a/examples/streaming/stream.go b/examples/streaming/stream.go index 405e22d..402d037 100644 --- a/examples/streaming/stream.go +++ b/examples/streaming/stream.go @@ -9,7 +9,7 @@ import ( "os" "time" - "github.com/oriiolabs/revai-go" + "github.com/descriptinc/revai-go" ) func main() { diff --git a/go.mod b/go.mod index 2387a16..8ee9291 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/nicolasgere/revai-go +module github.com/descriptinc/revai-go go 1.14