From ccbf1297c8fd9bb936764706a1426164d05a2011 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Tue, 7 Mar 2023 12:21:16 +0300 Subject: [PATCH] Rename package name Due to source code relocation from GitHub. Signed-off-by: Alex Vanin --- dsa_test.go | 2 +- ecdsa_test.go | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dsa_test.go b/dsa_test.go index 088e4f8..bf20b2c 100644 --- a/dsa_test.go +++ b/dsa_test.go @@ -10,7 +10,7 @@ import ( "math/big" "testing" - "github.com/TrueCloudLab/rfc6979" + "git.frostfs.info/TrueCloudLab/rfc6979" ) type dsaFixture struct { diff --git a/ecdsa_test.go b/ecdsa_test.go index e8cfc83..fb56737 100644 --- a/ecdsa_test.go +++ b/ecdsa_test.go @@ -10,7 +10,7 @@ import ( "math/big" "testing" - "github.com/TrueCloudLab/rfc6979" + "git.frostfs.info/TrueCloudLab/rfc6979" ) type ecdsaFixture struct { diff --git a/go.mod b/go.mod index ce894f4..781b5ee 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/TrueCloudLab/rfc6979 +module git.frostfs.info/TrueCloudLab/rfc6979 go 1.12