Skip to content

Commit

Permalink
all: swap satori's uuid package to gofrs (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdanzinger authored and tbpg committed Feb 6, 2019
1 parent 762f175 commit d23bd6f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appengine/gophers/gophers-6/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

"cloud.google.com/go/storage"
vision "cloud.google.com/go/vision/apiv1"
uuid "github.com/satori/go.uuid"
uuid "github.com/gofrs/uuid"
"google.golang.org/appengine/delay"
// [END new_imports]
)
Expand Down
2 changes: 1 addition & 1 deletion appengine_flexible/analytics/analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"net/url"
"os"

uuid "github.com/satori/go.uuid"
uuid "github.com/gofrs/uuid"

"google.golang.org/appengine"
)
Expand Down
2 changes: 1 addition & 1 deletion getting-started/bookshelf/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (
"cloud.google.com/go/pubsub"
"cloud.google.com/go/storage"

uuid "github.com/gofrs/uuid"
"github.com/gorilla/handlers"
"github.com/gorilla/mux"
uuid "github.com/satori/go.uuid"

"github.com/GoogleCloudPlatform/golang-samples/getting-started/bookshelf"
)
Expand Down
2 changes: 1 addition & 1 deletion getting-started/bookshelf/app/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"golang.org/x/oauth2"

"github.com/GoogleCloudPlatform/golang-samples/getting-started/bookshelf"
uuid "github.com/satori/go.uuid"
uuid "github.com/gofrs/uuid"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion jobs/v3/howto/howto_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"os"
"testing"

"github.com/satori/go.uuid"
"github.com/gofrs/uuid"

"github.com/GoogleCloudPlatform/golang-samples/internal/testutil"
talent "google.golang.org/api/jobs/v3"
Expand Down

0 comments on commit d23bd6f

Please sign in to comment.