Fix git directory go files are in
diff --git a/README.md b/README.md index 5cf8846..1db5501 100644 --- a/README.md +++ b/README.md
@@ -18,7 +18,7 @@ First, build your Go directory structure. A comprehensive guide on the intended structure of Go code can be [found here.](https://golang.org/doc/code.html) - mkdir -p $HOME/go/bin $HOME/go/pkg $HOME/go/src/github.com/maps-booking + mkdir -p $HOME/go/bin $HOME/go/pkg $HOME/go/src/github.com/maps-booking-v3 Next, add the following to your ~/.bashrc @@ -31,15 +31,15 @@ source ~/.bashrc Next, retrieve the utility from the -[maps-booking repository](https://maps-booking.googlesource.com/) +[maps-booking-v3 repository](https://maps-booking.googlesource.com/) - git clone https://maps-booking.googlesource.com/test_client $HOME/go/src/github.com/maps-booking/ + git clone https://maps-booking.googlesource.com/maps-booking-v3 $HOME/go/src/github.com/maps-booking-v3/ Lastly, download all dependencies and install the tool. cd $HOME/go go get -d ./... - go install $HOME/go/src/github.com/maps-booking/testclient/main.go + go install $HOME/go/src/github.com/maps-booking-v3/testclient/main.go ### Installing the utility with Windows Powershell @@ -49,7 +49,7 @@ $env:HOME = $env:USERPROFILE md $env:HOME\go\bin md $env:HOME\go\pkg - md $env:HOME\go\src\github.com\maps-booking + md $env:HOME\go\src\github.com\maps-booking-v3 Next, set the appropriate environment variables @@ -58,15 +58,15 @@ $env:GOBIN = (go env GOPATH) + "\bin" Next, retrieve the utility from the -[maps-booking repository](https://maps-booking.googlesource.com/) +[maps-booking-v3 repository](https://maps-booking.googlesource.com/) - git clone https://maps-booking.googlesource.com/test_client $env:HOME\go\src\github.com\maps-booking\ + git clone https://maps-booking.googlesource.com/maps-booking-v3 $env:HOME\go\src\github.com\maps-booking-v3\ Lastly, download all dependencies and install the tool. cd $env:HOME\go go get -d .\... - go install $env:HOME\go\src\github.com\maps-booking\testclient\main.go + go install $env:HOME\go\src\github.com\maps-booking-v3\testclient\main.go ### Using the utility
diff --git a/api/api.go b/api/api.go index 56d518f..434e4f4 100644 --- a/api/api.go +++ b/api/api.go
@@ -32,10 +32,10 @@ "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/proto" "github.com/google/go-cmp/cmp" - "github.com/maps-booking/utils" + "github.com/maps-booking-v3/utils" - fpb "github.com/maps-booking/feeds" - mpb "github.com/maps-booking/v3" + fpb "github.com/maps-booking-v3/feeds" + mpb "github.com/maps-booking-v3/v3" ) const (
diff --git a/testclient/main.go b/testclient/main.go index 522df19..eabfbef 100644 --- a/testclient/main.go +++ b/testclient/main.go
@@ -23,11 +23,11 @@ "path/filepath" "time" - "github.com/maps-booking/api" - "github.com/maps-booking/utils" + "github.com/maps-booking-v3/api" + "github.com/maps-booking-v3/utils" - fpb "github.com/maps-booking/feeds" - mpb "github.com/maps-booking/v3" + fpb "github.com/maps-booking-v3/feeds" + mpb "github.com/maps-booking-v3/v3" ) const logFile = "http_test_client_log_"
diff --git a/utils/utils.go b/utils/utils.go index ea9f1fa..ac9f064 100644 --- a/utils/utils.go +++ b/utils/utils.go
@@ -30,8 +30,8 @@ "github.com/golang/protobuf/proto" "github.com/google/go-cmp/cmp" - fpb "github.com/maps-booking/feeds" - mpb "github.com/maps-booking/v3" + fpb "github.com/maps-booking-v3/feeds" + mpb "github.com/maps-booking-v3/v3" ) // SlotKey is a struct representing a unique service.