Skip to content

Commit 751c41f

Browse files
committed
Init
1 parent 3c327e6 commit 751c41f

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,26 @@
1010

1111
# Output of the go coverage tool, specifically when used with LiteIDE
1212
*.out
13+
### Go template
14+
# If you prefer the allow list template instead of the deny list, see community template:
15+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
16+
#
17+
# Binaries for programs and plugins
18+
*.exe
19+
*.exe~
20+
*.dll
21+
*.so
22+
*.dylib
23+
24+
# Test binary, built with `go test -c`
25+
*.test
26+
27+
# Output of the go coverage tool, specifically when used with LiteIDE
28+
*.out
29+
30+
# Dependency directories (remove the comment below to include it)
31+
# vendor/
32+
33+
# Go workspace file
34+
go.work
35+
.idea/

authenticator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"net/http"
88
"strings"
99

10-
"github.com/d4x1/httpsign/validator"
1110
"github.com/gin-gonic/gin"
11+
"github.com/merico-dev/httpsign/validator"
1212
)
1313

1414
const (

authenticator_test.go

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

13-
"github.com/d4x1/httpsign/crypto"
14-
"github.com/d4x1/httpsign/validator"
13+
"github.com/merico-dev/httpsign/crypto"
14+
"github.com/merico-dev/httpsign/validator"
1515

1616
"github.com/stretchr/testify/require"
1717

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/d4x1/httpsign
1+
module github.com/merico-dev/httpsign
22

33
go 1.18
44

secret.go

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

3-
import "github.com/d4x1/httpsign/crypto"
3+
import "github.com/merico-dev/httpsign/crypto"
44

55
// KeyID define type
66
type KeyID string

0 commit comments

Comments
 (0)