Skip to content

Commit

Permalink
Merge pull request #132 from dvonthenen/fix-paths-after-org-transfer
Browse files Browse the repository at this point in the history
Fix Paths After Org Change
  • Loading branch information
davidvonthenen authored Nov 17, 2023
2 parents 99b697e + f96cee9 commit e3998d6
Show file tree
Hide file tree
Showing 45 changed files with 116 additions and 120 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ You can learn more about the full Deepgram API at [https://developers.deepgram.c
# Installation

```bash
go get github.com/deepgram-devs/deepgram-go-sdk
go get github.com/deepgram/deepgram-go-sdk
```

# Requirements
Expand Down Expand Up @@ -594,7 +594,7 @@ To make sure our community is safe for all, be sure to review and agree to our
We love to hear from you so if you have questions, comments or find a bug in the
project, let us know! You can either:

- [Open an issue in this repository](https://github.com/deepgram-devs/deepgram-dotnet-sdk/issues/new)
- [Open an issue in this repository](https://github.com/deepgram/deepgram-dotnet-sdk/issues/new)
- [Join the Deepgram Github Discussions Community](https://github.com/orgs/deepgram/discussions)
- [Join the Deepgram Discord Community](https://discord.gg/xWRaCDBtW4)

Expand Down
8 changes: 4 additions & 4 deletions docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
This SDK provides Go library for performing Prerecorded and Live/Streaming operations
on the Deepgram.com Platform.
GitHub repo: https://github.com/deepgram-devs/deepgram-go-sdk
Go SDK Examples: https://github.com/deepgram-devs/deepgram-go-sdk/tree/main/examples
GitHub repo: https://github.com/deepgram/deepgram-go-sdk
Go SDK Examples: https://github.com/deepgram/deepgram-go-sdk/tree/main/examples
Deepgram Platform API reference: https://developers.deepgram.com/reference
Documentation: https://developers.deepgram.com/docs
Expand All @@ -20,6 +20,6 @@
package sdk

import (
_ "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/live"
_ "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
_ "github.com/deepgram/deepgram-go-sdk/pkg/client/live"
_ "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)
4 changes: 2 additions & 2 deletions examples/manage/balances/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions examples/manage/invitations/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions examples/manage/keys/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/manage/members/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions examples/manage/projects/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions examples/manage/scopes/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions examples/manage/usage/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"log"
"os"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions examples/prerecorded/callback/callback/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (

prettyjson "github.com/hokaccha/go-prettyjson"

prerecorded "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
prerecorded "github.com/deepgram/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/prerecorded/callback/endpoint/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/gin-gonic/gin"
prettyjson "github.com/hokaccha/go-prettyjson"

interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/prerecorded/v1/interfaces"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/prerecorded/v1/interfaces"
)

type SampleProxy struct {
Expand Down
6 changes: 3 additions & 3 deletions examples/prerecorded/file/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (

prettyjson "github.com/hokaccha/go-prettyjson"

prerecorded "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
prerecorded "github.com/deepgram/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions examples/prerecorded/stream/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (

prettyjson "github.com/hokaccha/go-prettyjson"

prerecorded "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
prerecorded "github.com/deepgram/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions examples/prerecorded/url/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (

prettyjson "github.com/hokaccha/go-prettyjson"

prerecorded "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
prerecorded "github.com/deepgram/deepgram-go-sdk/pkg/api/prerecorded/v1"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions examples/streaming/http/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"os"
"reflect"

interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/live"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/live"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/streaming/microphone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export DEEPGRAM_API_KEY=YOUR-APP-KEY-HERE

## Installation

The Live API (Real-Time) example makes use of a [microphone package](https://github.com/deepgram-devs/deepgram-go-sdk/tree/main/pkg/audio/microphone) contained within the repository. That package makes use of the [PortAudio library](http://www.portaudio.com/) which is a cross-platform open source audio library. If you are on Linux, you can install this library using whatever package manager is available (yum, apt, etc.) on your operating system. If you are on macOS, you can install this library using [brew](https://brew.sh/).
The Live API (Real-Time) example makes use of a [microphone package](https://github.com/deepgram/deepgram-go-sdk/tree/main/pkg/audio/microphone) contained within the repository. That package makes use of the [PortAudio library](http://www.portaudio.com/) which is a cross-platform open source audio library. If you are on Linux, you can install this library using whatever package manager is available (yum, apt, etc.) on your operating system. If you are on macOS, you can install this library using [brew](https://brew.sh/).

[dg-console]: https://console.deepgram.com/
[dg-signup]: https://console.deepgram.com/signup
8 changes: 4 additions & 4 deletions examples/streaming/microphone/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
"os"
"strings"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/live/v1/interfaces"
microphone "github.com/deepgram-devs/deepgram-go-sdk/pkg/audio/microphone"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/live"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/live/v1/interfaces"
microphone "github.com/deepgram/deepgram-go-sdk/pkg/audio/microphone"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/live"
)

type MyCallback struct{}
Expand Down
6 changes: 3 additions & 3 deletions examples/streaming/replay/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"log"
"os"

replay "github.com/deepgram-devs/deepgram-go-sdk/pkg/audio/replay"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/live"
replay "github.com/deepgram/deepgram-go-sdk/pkg/audio/replay"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/live"
)

func main() {
Expand Down
17 changes: 7 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
module github.com/deepgram-devs/deepgram-go-sdk
module github.com/deepgram/deepgram-go-sdk

go 1.18

require (
github.com/Jeffail/gabs/v2 v2.6.1
github.com/dvonthenen/websocket v1.5.1-dyv.2
github.com/google/go-querystring v1.1.0
github.com/gorilla/websocket v1.5.0
github.com/gordonklaus/portaudio v0.0.0-20230709114228-aafa478834f5
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f
github.com/youpy/go-wav v0.3.2
k8s.io/klog/v2 v2.110.1
)

require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/jarcoal/httpmock v1.3.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
github.com/jarcoal/httpmock v1.3.0
)

require (
github.com/dvonthenen/websocket v1.5.1-dyv.2 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/gordonklaus/portaudio v0.0.0-20230709114228-aafa478834f5 // indirect
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/youpy/go-riff v0.1.0 // indirect
github.com/youpy/go-wav v0.3.2 // indirect
github.com/zaf/g711 v0.0.0-20190814101024-76a4a538f52b // indirect
golang.org/x/sys v0.6.0 // indirect
k8s.io/klog/v2 v2.110.1 // indirect
)
15 changes: 7 additions & 8 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
github.com/Jeffail/gabs/v2 v2.6.1 h1:wwbE6nTQTwIMsMxzi6XFQQYRZ6wDc1mSdxoAN+9U4Gk=
github.com/Jeffail/gabs/v2 v2.6.1/go.mod h1:xCn81vdHKxFUuWWAaD5jCTQDNPBMh5pPs9IJ+NcziBI=
github.com/Jeffail/gabs/v2 v2.7.0 h1:Y2edYaTcE8ZpRsR2AtmPu5xQdFDIthFG0jYhu5PY8kg=
github.com/Jeffail/gabs/v2 v2.7.0/go.mod h1:dp5ocw1FvBBQYssgHsG7I1WYsiLRtkUaB1FEtSwvNUw=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/dvonthenen/websocket v1.5.1-dyv.2 h1:OXlWJJkeHt8k4+MEI0Y8SQjY2ihHYD2z/tI7sZZfsnA=
github.com/dvonthenen/websocket v1.5.1-dyv.2/go.mod h1:q2GbopbpFJvBP4iqVvqwwahVmvu2HnCfdqCWDoQVKMM=
github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs=
Expand All @@ -17,8 +14,6 @@ github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/gordonklaus/portaudio v0.0.0-20230709114228-aafa478834f5 h1:5AlozfqaVjGYGhms2OsdUyfdJME76E6rx5MdGpjzZpc=
github.com/gordonklaus/portaudio v0.0.0-20230709114228-aafa478834f5/go.mod h1:WY8R6YKlI2ZI3UyzFk7P6yGSuS+hFwNtEzrexRyD7Es=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f h1:7LYC+Yfkj3CTRcShK0KOL/w6iTiKyqqBA9a41Wnggw8=
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f/go.mod h1:pFlLw2CfqZiIBOx6BuCeRLCrfxBJipTY0nIOF/VbGcI=
github.com/jarcoal/httpmock v1.3.0 h1:2RJ8GP0IIaWwcC9Fp2BmVi8Kog3v2Hn7VXM3fTd+nuc=
Expand All @@ -28,9 +23,13 @@ github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovk
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng=
github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
github.com/maxatome/go-testdeep v1.12.0 h1:Ql7Go8Tg0C1D/uMMX59LAoYK7LffeJQ6X2T04nTH68g=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/youpy/go-riff v0.1.0 h1:vZO/37nI4tIET8tQI0Qn0Y79qQh99aEpponTPiPut7k=
github.com/youpy/go-riff v0.1.0/go.mod h1:83nxdDV4Z9RzrTut9losK7ve4hUnxUR8ASSz4BsKXwQ=
Expand All @@ -42,10 +41,10 @@ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=
gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw=
k8s.io/klog/v2 v2.110.1 h1:U/Af64HJf7FcwMcXyKm2RPM22WZzyR7OSpYj5tg3cL0=
k8s.io/klog/v2 v2.110.1/go.mod h1:YGtd1984u+GgbuZ7e08/yBuAfKLSO0+uR1Fhi6ExXjo=
2 changes: 1 addition & 1 deletion pkg/api/live/v1/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
prettyjson "github.com/hokaccha/go-prettyjson"
klog "k8s.io/klog/v2"

interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/live/v1/interfaces"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/live/v1/interfaces"
)

type DefaultCallbackHandler struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/live/v1/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
prettyjson "github.com/hokaccha/go-prettyjson"
klog "k8s.io/klog/v2"

interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/live/v1/interfaces"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/api/live/v1/interfaces"
)

// MessageRouter is helper struct that routes events
Expand Down
6 changes: 3 additions & 3 deletions pkg/api/manage/v1/balances.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import (

klog "k8s.io/klog/v2"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
)

// ListBalances lists all balances for a project
Expand Down
6 changes: 3 additions & 3 deletions pkg/api/manage/v1/invitations.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (

klog "k8s.io/klog/v2"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
)

// ListInvitations lists all invitations for a project
Expand Down
6 changes: 3 additions & 3 deletions pkg/api/manage/v1/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (

klog "k8s.io/klog/v2"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
)

// ListKeys lists all keys for a project
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/manage/v1/manage.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package manage

import (
client "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/prerecorded"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/prerecorded"
)

// ManageClient is the client for the Deepgram Manage API
Expand Down
6 changes: 3 additions & 3 deletions pkg/api/manage/v1/members.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import (

klog "k8s.io/klog/v2"

api "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram-devs/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram-devs/deepgram-go-sdk/pkg/client/interfaces"
api "github.com/deepgram/deepgram-go-sdk/pkg/api/manage/v1/interfaces"
version "github.com/deepgram/deepgram-go-sdk/pkg/api/version"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
)

// ListMembers lists all members for a project
Expand Down
Loading

0 comments on commit e3998d6

Please sign in to comment.