1
0
mirror of https://github.com/stevenferrer/multi-select-facet.git synced 2025-11-23 21:54:45 +02:00

Update solr-go version to latest

This commit is contained in:
Steven Ferrer
2021-11-04 09:03:25 +08:00
parent faf3139548
commit 5358ba9c93
5 changed files with 6 additions and 6 deletions

2
go.mod
View File

@@ -6,5 +6,5 @@ require (
github.com/go-chi/chi/v5 v5.0.4 github.com/go-chi/chi/v5 v5.0.4
github.com/go-chi/cors v1.2.0 github.com/go-chi/cors v1.2.0
github.com/pkg/errors v0.9.1 github.com/pkg/errors v0.9.1
github.com/sf9v/solr-go v0.3.0 github.com/stevenferrer/solr-go v0.3.1
) )

4
go.sum
View File

@@ -10,8 +10,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 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 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/sf9v/solr-go v0.3.0 h1:NxQSw8alPC2+LbSldSjwJkY1JVU9J20Gn+pc8yd2zU8= github.com/stevenferrer/solr-go v0.3.1 h1:56/79HaiGVVn+3xHZ53qhMzsaKxzyAcY5tsQMJzSLXo=
github.com/sf9v/solr-go v0.3.0/go.mod h1:JWCb1jIm+CN6ZPPcEyebiEmQg1GUNOPxzs9WgdBj/W4= github.com/stevenferrer/solr-go v0.3.1/go.mod h1:kvK5nBVFkCbHr9Yvkba/SeU3ziax/1iUdxrN6fBA5BU=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=

View File

@@ -14,7 +14,7 @@ import (
"github.com/go-chi/cors" "github.com/go-chi/cors"
"github.com/pkg/errors" "github.com/pkg/errors"
solr "github.com/sf9v/solr-go" solr "github.com/stevenferrer/solr-go"
) )
const ( const (

View File

@@ -7,7 +7,7 @@ import (
"net/http" "net/http"
"strings" "strings"
"github.com/sf9v/solr-go" "github.com/stevenferrer/solr-go"
) )
// searchHandler is the search handler // searchHandler is the search handler

View File

@@ -4,7 +4,7 @@ import (
"encoding/json" "encoding/json"
"net/http" "net/http"
"github.com/sf9v/solr-go" "github.com/stevenferrer/solr-go"
) )
type suggestHandler struct { type suggestHandler struct {