diff --git a/Dockerfile b/Dockerfile index 945048c5..d13d9af7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN go get -u -v github.com/golang/protobuf/protoc-gen-go \ google.golang.org/grpc/reflection \ golang.org/x/net/context \ github.com/go-chi/chi \ - github.com/renstrom/fuzzysearch/fuzzy \ + github.com/lithammer/fuzzysearch/fuzzy \ golang.org/x/tools/imports RUN go get -u -v github.com/gobuffalo/packr/v2/... \ @@ -48,4 +48,4 @@ RUN go install -v EXPOSE 4770 4771 -ENTRYPOINT ["gripmock"] \ No newline at end of file +ENTRYPOINT ["gripmock"] diff --git a/Gopkg.toml b/Gopkg.toml index 49c95bdb..93e31bc3 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -38,7 +38,7 @@ version = "1.0.0" [[constraint]] - name = "github.com/renstrom/fuzzysearch" + name = "github.com/lithammer/fuzzysearch" version = "1.0.0" [[constraint]] diff --git a/stub/storage.go b/stub/storage.go index 1b111831..050df60a 100644 --- a/stub/storage.go +++ b/stub/storage.go @@ -9,7 +9,7 @@ import ( "regexp" "sync" - "github.com/renstrom/fuzzysearch/fuzzy" + "github.com/lithammer/fuzzysearch/fuzzy" ) var mx = sync.Mutex{}