Skip to content

Commit

Permalink
Merge pull request #51 from lithammer/google-cloud-proto-migration
Browse files Browse the repository at this point in the history
Migrate to new protobuf message types
  • Loading branch information
daichirata committed May 17, 2023
2 parents 5d129b0 + 2d994a1 commit 3df9ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ require (
github.com/google/go-cmp v0.5.9
github.com/spf13/cobra v0.0.5
google.golang.org/api v0.114.0
google.golang.org/genproto v0.0.0-20230320184635-7606e756e683
)

require (
Expand Down Expand Up @@ -35,6 +34,7 @@ require (
golang.org/x/text v0.8.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230320184635-7606e756e683 // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/protobuf v1.29.1 // indirect
)
2 changes: 1 addition & 1 deletion internal/hammer/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

"cloud.google.com/go/spanner"
database "cloud.google.com/go/spanner/admin/database/apiv1"
"cloud.google.com/go/spanner/admin/database/apiv1/databasepb"
"google.golang.org/api/option"
databasepb "google.golang.org/genproto/googleapis/spanner/admin/database/v1"
)

type Client struct {
Expand Down

0 comments on commit 3df9ad0

Please sign in to comment.