Skip to content

Commit e3342f6

Browse files
author
Thibault Gilles
committed
Fix import paths
1 parent 20baad7 commit e3342f6

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/aestek/haproxy-connect
1+
module github.com/criteo/haproxy-consul-connect
22

33
go 1.12
44

haproxy/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"sync/atomic"
66
"syscall"
77

8-
"github.com/aestek/haproxy-connect/haproxy/halog"
9-
"github.com/aestek/haproxy-connect/lib"
8+
"github.com/criteo/haproxy-consul-connect/haproxy/halog"
9+
"github.com/criteo/haproxy-consul-connect/lib"
1010
log "github.com/sirupsen/logrus"
1111
)
1212

haproxy/config.go

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

1010
"text/template"
1111

12-
"github.com/aestek/haproxy-connect/consul"
13-
"github.com/aestek/haproxy-connect/lib"
12+
"github.com/criteo/haproxy-consul-connect/consul"
13+
"github.com/criteo/haproxy-consul-connect/lib"
1414
log "github.com/sirupsen/logrus"
1515
)
1616

haproxy/downstream.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package haproxy
33
import (
44
"fmt"
55

6-
"github.com/aestek/haproxy-connect/consul"
6+
"github.com/criteo/haproxy-consul-connect/consul"
77
"github.com/haproxytech/models"
88
)
99

haproxy/haproxy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"syscall"
99
"time"
1010

11-
"github.com/aestek/haproxy-connect/consul"
12-
"github.com/aestek/haproxy-connect/lib"
11+
"github.com/criteo/haproxy-consul-connect/consul"
12+
"github.com/criteo/haproxy-consul-connect/lib"
1313
spoe "github.com/criteo/haproxy-spoe-go"
1414
"github.com/haproxytech/models"
1515
"github.com/hashicorp/consul/api"

haproxy/spoe.go

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

77
log "github.com/sirupsen/logrus"
88

9-
"github.com/aestek/haproxy-connect/consul"
9+
"github.com/criteo/haproxy-consul-connect/consul"
1010
spoe "github.com/criteo/haproxy-spoe-go"
1111
"github.com/hashicorp/consul/agent/connect"
1212
"github.com/hashicorp/consul/api"

haproxy/upstream.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package haproxy
33
import (
44
"fmt"
55

6-
"github.com/aestek/haproxy-connect/consul"
6+
"github.com/criteo/haproxy-consul-connect/consul"
77
"github.com/haproxytech/models"
88
)
99

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import (
55

66
log "github.com/sirupsen/logrus"
77

8-
haproxy "github.com/aestek/haproxy-connect/haproxy"
9-
"github.com/aestek/haproxy-connect/lib"
8+
haproxy "github.com/criteo/haproxy-consul-connect/haproxy"
9+
"github.com/criteo/haproxy-consul-connect/lib"
1010

1111
"github.com/hashicorp/consul/api"
1212

13-
"github.com/aestek/haproxy-connect/consul"
13+
"github.com/criteo/haproxy-consul-connect/consul"
1414
)
1515

1616
func main() {

0 commit comments

Comments
 (0)