Skip to content

Commit 72c0297

Browse files
committed
change project mod path + Upgrade dependencies
1 parent fa8bc97 commit 72c0297

File tree

352 files changed

+4716
-14813
lines changed

Some content is hidden

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

352 files changed

+4716
-14813
lines changed

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"gopkg.in/yaml.v2"
1111

12-
"github.com/mcorbin/cabourotte/daemon"
12+
"github.com/appclacks/cabourotte/daemon"
1313

1414
"github.com/pkg/errors"
1515
"github.com/urfave/cli/v2"

daemon/config.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package daemon
33
import (
44
"github.com/pkg/errors"
55

6-
"github.com/mcorbin/cabourotte/discovery"
7-
"github.com/mcorbin/cabourotte/exporter"
8-
"github.com/mcorbin/cabourotte/healthcheck"
9-
"github.com/mcorbin/cabourotte/http"
6+
"github.com/appclacks/cabourotte/discovery"
7+
"github.com/appclacks/cabourotte/exporter"
8+
"github.com/appclacks/cabourotte/healthcheck"
9+
"github.com/appclacks/cabourotte/http"
1010
)
1111

1212
// Configuration the HTTP server configuration

daemon/config_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import (
99

1010
"gopkg.in/yaml.v2"
1111

12-
"github.com/mcorbin/cabourotte/discovery"
13-
dhttp "github.com/mcorbin/cabourotte/discovery/http"
14-
"github.com/mcorbin/cabourotte/exporter"
15-
"github.com/mcorbin/cabourotte/healthcheck"
16-
"github.com/mcorbin/cabourotte/http"
12+
"github.com/appclacks/cabourotte/discovery"
13+
dhttp "github.com/appclacks/cabourotte/discovery/http"
14+
"github.com/appclacks/cabourotte/exporter"
15+
"github.com/appclacks/cabourotte/healthcheck"
16+
"github.com/appclacks/cabourotte/http"
1717
)
1818

1919
func TestUnmarshalConfig(t *testing.T) {

daemon/root.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"github.com/pkg/errors"
88
"go.uber.org/zap"
99

10-
"github.com/mcorbin/cabourotte/discovery"
11-
"github.com/mcorbin/cabourotte/exporter"
12-
"github.com/mcorbin/cabourotte/healthcheck"
13-
"github.com/mcorbin/cabourotte/http"
14-
"github.com/mcorbin/cabourotte/memorystore"
15-
"github.com/mcorbin/cabourotte/prometheus"
10+
"github.com/appclacks/cabourotte/discovery"
11+
"github.com/appclacks/cabourotte/exporter"
12+
"github.com/appclacks/cabourotte/healthcheck"
13+
"github.com/appclacks/cabourotte/http"
14+
"github.com/appclacks/cabourotte/memorystore"
15+
"github.com/appclacks/cabourotte/prometheus"
1616
)
1717

1818
// Component is the component which will manage the HTTP server and the program

daemon/root_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77

88
"go.uber.org/zap"
99

10-
"github.com/mcorbin/cabourotte/healthcheck"
11-
"github.com/mcorbin/cabourotte/http"
10+
"github.com/appclacks/cabourotte/healthcheck"
11+
"github.com/appclacks/cabourotte/http"
1212
)
1313

1414
func TestNewStop(t *testing.T) {

discovery/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package discovery
22

33
import (
4-
"github.com/mcorbin/cabourotte/discovery/http"
4+
"github.com/appclacks/cabourotte/discovery/http"
55
)
66

77
// Configuration the service discovery mechanisms configuration

discovery/http/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package http
33
import (
44
"github.com/pkg/errors"
55

6-
"github.com/mcorbin/cabourotte/healthcheck"
6+
"github.com/appclacks/cabourotte/healthcheck"
77
)
88

99
type Configuration struct {

discovery/http/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"go.uber.org/zap"
1414
"gopkg.in/tomb.v2"
1515

16-
"github.com/mcorbin/cabourotte/healthcheck"
17-
"github.com/mcorbin/cabourotte/tls"
16+
"github.com/appclacks/cabourotte/healthcheck"
17+
"github.com/appclacks/cabourotte/tls"
1818
)
1919

2020
// HTTPDiscovery the http discovery struct

discovery/http/root_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212

1313
"go.uber.org/zap"
1414

15-
"github.com/mcorbin/cabourotte/healthcheck"
16-
"github.com/mcorbin/cabourotte/prometheus"
15+
"github.com/appclacks/cabourotte/healthcheck"
16+
"github.com/appclacks/cabourotte/prometheus"
1717
prom "github.com/prometheus/client_golang/prometheus"
1818
)
1919

discovery/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"github.com/pkg/errors"
77
"go.uber.org/zap"
88

9-
dhttp "github.com/mcorbin/cabourotte/discovery/http"
10-
"github.com/mcorbin/cabourotte/healthcheck"
11-
"github.com/mcorbin/cabourotte/prometheus"
9+
dhttp "github.com/appclacks/cabourotte/discovery/http"
10+
"github.com/appclacks/cabourotte/healthcheck"
11+
"github.com/appclacks/cabourotte/prometheus"
1212
prom "github.com/prometheus/client_golang/prometheus"
1313
)
1414

0 commit comments

Comments
 (0)