File tree Expand file tree Collapse file tree 5 files changed +28
-5
lines changed Expand file tree Collapse file tree 5 files changed +28
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
# Output of the go coverage tool, specifically when used with LiteIDE
12
12
* .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 /
Original file line number Diff line number Diff line change 7
7
"net/http"
8
8
"strings"
9
9
10
- "github.com/d4x1/httpsign/validator"
11
10
"github.com/gin-gonic/gin"
11
+ "github.com/merico-dev/httpsign/validator"
12
12
)
13
13
14
14
const (
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import (
10
10
"testing"
11
11
"time"
12
12
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"
15
15
16
16
"github.com/stretchr/testify/require"
17
17
Original file line number Diff line number Diff line change 1
- module github.com/d4x1 /httpsign
1
+ module github.com/merico-dev /httpsign
2
2
3
3
go 1.18
4
4
Original file line number Diff line number Diff line change 1
1
package httpsign
2
2
3
- import "github.com/d4x1 /httpsign/crypto"
3
+ import "github.com/merico-dev /httpsign/crypto"
4
4
5
5
// KeyID define type
6
6
type KeyID string
You can’t perform that action at this time.
0 commit comments