From 05f8dd1a857d268fdea12d4b6923a2aebe606046 Mon Sep 17 00:00:00 2001 From: Tim Krehl Date: Fri, 27 May 2022 15:42:38 -0500 Subject: [PATCH] Append v2 to module path Appending v2 to the module path so that the release can be properly tagged as 2.0.0. --- go.mod | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index fd7232a..eb1117f 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/DelineaXPM/tss-sdk-go +module github.com/DelineaXPM/tss-sdk-go/v2 go 1.13 diff --git a/main.go b/main.go index 526131a..1a965f1 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import ( "log" "os" - "github.com/DelineaXPM/tss-sdk-go/server" + "github.com/DelineaXPM/tss-sdk-go/v2/server" ) func main() {