Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
d4x1 committed May 9, 2024
1 parent 3c327e6 commit 751c41f
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,26 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out
### Go template
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

# Go workspace file
go.work
.idea/
2 changes: 1 addition & 1 deletion authenticator.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"net/http"
"strings"

"github.com/d4x1/httpsign/validator"
"github.com/gin-gonic/gin"
"github.com/merico-dev/httpsign/validator"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions authenticator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"testing"
"time"

"github.com/d4x1/httpsign/crypto"
"github.com/d4x1/httpsign/validator"
"github.com/merico-dev/httpsign/crypto"
"github.com/merico-dev/httpsign/validator"

"github.com/stretchr/testify/require"

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/d4x1/httpsign
module github.com/merico-dev/httpsign

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion secret.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package httpsign

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

// KeyID define type
type KeyID string
Expand Down

0 comments on commit 751c41f

Please sign in to comment.