Skip to content

Commit e1c6bc4

Browse files
committed
fix tidy & vendor
1 parent ef7df7b commit e1c6bc4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+10742
-6
lines changed

cmd/uptime-tracker/uptime-tracker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package main
33

44
import (
5-
"github.com/skycoin/skywire-ut/cmd/uptime-tracker/commands"
5+
"github.com/skycoin/skywire-services/cmd/uptime-tracker/commands"
66
)
77

88
func main() {

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ require (
1010
github.com/docker/docker v1.13.1
1111
github.com/flopp/go-staticmaps v0.0.0-20220221183018-c226716bec53
1212
github.com/go-chi/chi/v5 v5.0.11
13+
github.com/go-chi/httprate v0.9.0
14+
github.com/go-echarts/go-echarts/v2 v2.3.3
1315
github.com/go-playground/validator/v10 v10.15.1
1416
github.com/go-redis/redis v6.15.9+incompatible
1517
github.com/go-redis/redis/v8 v8.11.5
@@ -29,6 +31,7 @@ require (
2931
github.com/stretchr/testify v1.8.4
3032
github.com/xtaci/kcp-go v5.4.20+incompatible
3133
golang.org/x/net v0.14.0
34+
golang.zx2c4.com/wireguard v0.0.0-20230223181233-21636207a675
3235
gorm.io/driver/postgres v1.3.8
3336
gorm.io/gorm v1.23.8
3437
)
@@ -145,7 +148,6 @@ require (
145148
golang.org/x/text v0.14.0 // indirect
146149
golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 // indirect
147150
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
148-
golang.zx2c4.com/wireguard v0.0.0-20230223181233-21636207a675 // indirect
149151
google.golang.org/protobuf v1.31.0 // indirect
150152
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
151153
gopkg.in/yaml.v2 v2.4.0 // indirect

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg=
109109
github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU=
110110
github.com/go-chi/chi/v5 v5.0.11 h1:BnpYbFZ3T3S1WMpD79r7R5ThWX40TaFB7L31Y8xqSwA=
111111
github.com/go-chi/chi/v5 v5.0.11/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
112+
github.com/go-chi/httprate v0.9.0 h1:21A+4WDMDA5FyWcg7mNrhj63aNT8CGh+Z1alOE/piU8=
113+
github.com/go-chi/httprate v0.9.0/go.mod h1:6GOYBSwnpra4CQfAKXu8sQZg+nZ0M1g9QnyFvxrAB8A=
114+
github.com/go-echarts/go-echarts/v2 v2.3.3 h1:uImZAk6qLkC6F9ju6mZ5SPBqTyK8xjZKwSmwnCg4bxg=
115+
github.com/go-echarts/go-echarts/v2 v2.3.3/go.mod h1:56YlvzhW/a+du15f3S2qUGNDfKnFOeJSThBIrVFHDtI=
112116
github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=
113117
github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
114118
github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=

pkg/uptime-tracker/api/api.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"github.com/go-echarts/go-echarts/v2/charts"
2222
"github.com/go-echarts/go-echarts/v2/opts"
2323
"github.com/sirupsen/logrus"
24-
"github.com/skycoin/skywire-ut/internal/utmetrics"
25-
"github.com/skycoin/skywire-ut/pkg/uptime-tracker/store"
24+
"github.com/skycoin/skywire-services/internal/utmetrics"
25+
"github.com/skycoin/skywire-services/pkg/uptime-tracker/store"
2626

2727
"github.com/skycoin/skywire-utilities/pkg/buildinfo"
2828
"github.com/skycoin/skywire-utilities/pkg/cipher"

pkg/uptime-tracker/api/api_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"net/http/httptest"
1111
"testing"
1212

13-
"github.com/skycoin/skywire-ut/internal/utmetrics"
14-
"github.com/skycoin/skywire-ut/pkg/uptime-tracker/store"
13+
"github.com/skycoin/skywire-services/internal/utmetrics"
14+
"github.com/skycoin/skywire-services/pkg/uptime-tracker/store"
1515
"github.com/stretchr/testify/assert"
1616
"github.com/stretchr/testify/require"
1717

vendor/github.com/go-chi/httprate/LICENSE

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/go-chi/httprate/README.md

Lines changed: 92 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/go-chi/httprate/context.go

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/go-chi/httprate/httprate.go

Lines changed: 141 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)