Skip to content

Commit aeceb61

Browse files
committed
feat: update fork
1 parent 7fe17e3 commit aeceb61

24 files changed

+44
-45
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gonsul is licenced under [The MIT LICENCE](LICENCE.md) for all code.
1515

1616
## Submitting a Bug
1717

18-
Bugs can be submitted to the [Github issue page](https://github.com/miniclip/gonsul/issues).
18+
Bugs can be submitted to the [Github issue page](https://github.com/scaleway/gonsul/issues).
1919

2020
Gonsul is not perfect software and will be buggy. When submitting a bug, be
2121
careful to know the following:
@@ -43,7 +43,7 @@ ask for respect and understanding and will try to provide the same back.
4343

4444
Before requesting or implementing a new feature, please do the following:
4545

46-
- Verify in existing [issues](https://github.com/miniclip/gonsul/issues) whether
46+
- Verify in existing [issues](https://github.com/scaleway/gonsul/issues) whether
4747
the feature might already be in the works, or
4848
has already been rejected.
4949
- Make sure you're using the latest release (or even the latest code, if you're
@@ -128,5 +128,4 @@ eventual automated changelog generation.
128128

129129
### Credit
130130

131-
`gonsul` has been improved by
132-
[many contributors](https://github.com/miniclip/gonsul/graphs/contributors)!
131+
`gonsul` has been improved by [many contributors](https://github.com/scaleway/gonsul/graphs/contributors)!

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
ARG GONSUL=/go/src/github.com/scaleway/gonsul
22

3-
FROM golang:1.24.2-alpine as build
3+
FROM golang:1.24.2-alpine AS build
44

55
ARG GONSUL
66

7-
RUN apk --no-cache add build-base dep git make
7+
RUN apk --no-cache add build-base git make
88

99
RUN mkdir -p $GONSUL
1010

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ VERSION=$(shell git describe --abbrev=0 --always --tags)
1111
BUILD_DATE=$(shell date -u +%Y%m%d.%H%M%S)
1212

1313
# Setup the -ldflags option for go build here, interpolate the variable values
14-
LDFLAGS_APP=-ldflags "-X github.com/miniclip/gonsul/app.Version=${VERSION} -X github.com/miniclip/gonsul/app.BuildDate=${BUILD_DATE}"
14+
LDFLAGS_APP=-ldflags "-X github.com/scaleway/gonsul/app.Version=${VERSION} -X github.com/scaleway/gonsul/app.BuildDate=${BUILD_DATE}"
1515

1616
# Builds the application
1717
build:

app/app.go

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

33
import (
4-
"github.com/miniclip/gonsul/internal/config"
4+
"github.com/scaleway/gonsul/internal/config"
55

66
"fmt"
77
"os"

app/app_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package app
22

33
import (
4-
"github.com/miniclip/gonsul/internal/config"
5-
"github.com/miniclip/gonsul/tests/mocks"
4+
"github.com/scaleway/gonsul/internal/config"
5+
"github.com/scaleway/gonsul/tests/mocks"
66

77
"os"
88
"testing"

app/hook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package app
22

33
import (
4-
"github.com/miniclip/gonsul/internal/config"
5-
"github.com/miniclip/gonsul/internal/util"
4+
"github.com/scaleway/gonsul/internal/config"
5+
"github.com/scaleway/gonsul/internal/util"
66
"sync"
77

88
"fmt"

app/hook_http.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package app
22

33
import (
4-
"github.com/miniclip/gonsul/internal/config"
5-
"github.com/miniclip/gonsul/internal/util"
4+
"github.com/scaleway/gonsul/internal/config"
5+
"github.com/scaleway/gonsul/internal/util"
66

77
"errors"
88
"net/http"

app/hook_test.go

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

33
import (
4-
"github.com/miniclip/gonsul/tests/mocks"
4+
"github.com/scaleway/gonsul/tests/mocks"
55

66
. "github.com/onsi/gomega"
77
"github.com/stretchr/testify/mock"

app/once.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package app
22

33
import (
4-
"github.com/miniclip/gonsul/internal/config"
5-
"github.com/miniclip/gonsul/internal/exporter"
6-
"github.com/miniclip/gonsul/internal/importer"
7-
"github.com/miniclip/gonsul/internal/util"
4+
"github.com/scaleway/gonsul/internal/config"
5+
"github.com/scaleway/gonsul/internal/exporter"
6+
"github.com/scaleway/gonsul/internal/importer"
7+
"github.com/scaleway/gonsul/internal/util"
88
)
99

1010
type Ionce interface {

app/once_test.go

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

33
import (
4-
"github.com/miniclip/gonsul/internal/config"
4+
"github.com/scaleway/gonsul/internal/config"
55

66
. "github.com/onsi/gomega"
77
"github.com/stretchr/testify/mock"

0 commit comments

Comments
 (0)