Skip to content

Commit

Permalink
Up dependent packages
Browse files Browse the repository at this point in the history
  • Loading branch information
demdxx committed Jul 10, 2024
1 parent 4b256d5 commit 5e63c8b
Show file tree
Hide file tree
Showing 20 changed files with 84 additions and 112 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# UDetect protocol

[![Build Status](https://github.com/sspserver/udetect/workflows/run%20tests/badge.svg)](https://github.com/sspserver/udetect/actions?workflow=run%20tests)
[![Go Report Card](https://goreportcard.com/badge/github.com/sspserver/udetect)](https://goreportcard.com/report/github.com/sspserver/udetect)
[![GoDoc](https://godoc.org/github.com/sspserver/udetect?status.svg)](https://godoc.org/github.com/sspserver/udetect)
[![Build Status](https://github.com/geniusrabbit/udetect/workflows/run%20tests/badge.svg)](https://github.com/geniusrabbit/udetect/actions?workflow=run%20tests)
[![Go Report Card](https://goreportcard.com/badge/github.com/geniusrabbit/udetect)](https://goreportcard.com/report/github.com/geniusrabbit/udetect)
[![GoDoc](https://godoc.org/github.com/geniusrabbit/udetect?status.svg)](https://godoc.org/github.com/geniusrabbit/udetect)
[![Coverage Status](https://coveralls.io/repos/github/sspserver/udetect/badge.svg)](https://coveralls.io/github/sspserver/udetect)

> License Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/google/uuid"

"github.com/sspserver/udetect/protocol"
"github.com/geniusrabbit/udetect/protocol"
)

// Request object
Expand Down
2 changes: 1 addition & 1 deletion examples/server/api/detector.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"math/rand"

"github.com/sspserver/udetect/protocol"
"github.com/geniusrabbit/udetect/protocol"
)

// Detector API implementation
Expand Down
6 changes: 3 additions & 3 deletions examples/server/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/sspserver/udetect/examples/server
module github.com/geniusrabbit/udetect/examples/server

go 1.16

Expand All @@ -9,12 +9,12 @@ require (
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/sspserver/udetect v0.0.0-00010101000000-000000000000
github.com/geniusrabbit/udetect v0.0.0-00010101000000-000000000000
github.com/stretchr/testify v1.7.0
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2
go.uber.org/zap v1.19.1
google.golang.org/grpc v1.41.0
launchpad.net/gocheck v0.0.0-20140225173054-000000000087 // indirect
)

replace github.com/sspserver/udetect => ../../
replace github.com/geniusrabbit/udetect => ../../
6 changes: 3 additions & 3 deletions examples/server/grpcserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus/promhttp"

"github.com/sspserver/udetect/examples/server/middleware"
"github.com/sspserver/udetect/examples/server/tools"
"github.com/sspserver/udetect/protocol"
"github.com/geniusrabbit/udetect/examples/server/middleware"
"github.com/geniusrabbit/udetect/examples/server/tools"
"github.com/geniusrabbit/udetect/protocol"
)

type contextWrapper func(context.Context) context.Context
Expand Down
8 changes: 4 additions & 4 deletions examples/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"go.uber.org/zap/zapcore"

"github.com/demdxx/goconfig"
"github.com/sspserver/udetect/examples/server/api"
"github.com/sspserver/udetect/examples/server/context/config"
"github.com/sspserver/udetect/examples/server/context/ctxlogger"
"github.com/sspserver/udetect/examples/server/grpcserver"
"github.com/geniusrabbit/udetect/examples/server/api"
"github.com/geniusrabbit/udetect/examples/server/context/config"
"github.com/geniusrabbit/udetect/examples/server/context/ctxlogger"
"github.com/geniusrabbit/udetect/examples/server/grpcserver"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/server/middleware/http_context_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"

"github.com/sspserver/udetect/examples/server/context/ctxlogger"
"github.com/geniusrabbit/udetect/examples/server/context/ctxlogger"
)

// HTTPContextWrapper global middelware of the HTTP rounter
Expand Down
2 changes: 1 addition & 1 deletion examples/server/tools/healthcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"go.uber.org/zap"

"github.com/sspserver/udetect/examples/server/context/ctxlogger"
"github.com/geniusrabbit/udetect/examples/server/context/ctxlogger"
)

// HealthCheck of service
Expand Down
4 changes: 2 additions & 2 deletions examples/server/tools/swagger.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

swaggerFiles "github.com/swaggo/files"

"github.com/sspserver/udetect/examples/server/context/ctxlogger"
"github.com/sspserver/udetect/protocol"
"github.com/geniusrabbit/udetect/examples/server/context/ctxlogger"
"github.com/geniusrabbit/udetect/protocol"
)

// SwaggerServer returns swagger specification files located under "/swagger/"
Expand Down
39 changes: 23 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
module github.com/sspserver/udetect
module github.com/geniusrabbit/udetect

go 1.16
go 1.22

require (
github.com/bsm/openrtb v2.1.2+incompatible
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/uuid v1.3.0
github.com/golang/protobuf v1.5.4
github.com/google/uuid v1.6.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/kr/pretty v0.3.0 // indirect
github.com/onsi/gomega v1.16.0 // indirect
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20210924151903-3ad01bbaa167 // indirect
golang.org/x/sys v0.0.0-20210925032602-92d5a993a665 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0
google.golang.org/grpc v1.41.0
google.golang.org/protobuf v1.27.1
github.com/stretchr/testify v1.9.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.34.2
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.33.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto v0.0.0-20240709173604-40e1e62336c5 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 5e63c8b

Please sign in to comment.