Fix missing module rename

This commit is contained in:
ekzyis 2024-04-25 11:48:20 +02:00
parent 7b673f3624
commit 6a3d864c8f
2 changed files with 2 additions and 2 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module git.ekzyis.com/ekzyis/nip44
module github.com/ekzyis/nip44
go 1.21.0

View File

@ -6,8 +6,8 @@ import (
"hash"
"testing"
"git.ekzyis.com/ekzyis/nip44"
"github.com/decred/dcrd/dcrec/secp256k1/v4"
"github.com/ekzyis/nip44"
"github.com/stretchr/testify/assert"
)