commit be6f360667fff3c98797df97dd307fd31368c117 parent c72db71ea48e9023b2f2dbb68d1e144a5c729731 Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Thu, 7 Dec 2023 18:21:51 +0100 move to taler-go github dep Diffstat:
| M | go.mod | | | 7 | ++++--- |
| M | pkg/rest/gnsregistrar.go | | | 2 | +- |
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/go.mod b/go.mod @@ -3,7 +3,8 @@ module gnunet.org/gnunet-gns-registrar go 1.18 require ( - github.com/gorilla/mux v1.8.0 // indirect - gopkg.in/ini.v1 v1.67.0 // indirect - taler.net/taler-go.git v0.0.0-20220719135513-36eb87bf37a3 // indirect + github.com/gorilla/mux v1.8.0 + gopkg.in/ini.v1 v1.67.0 ) + +require github.com/schanzen/taler-go v0.0.3 // indirect diff --git a/pkg/rest/gnsregistrar.go b/pkg/rest/gnsregistrar.go @@ -29,7 +29,7 @@ import ( "github.com/gorilla/mux" "gopkg.in/ini.v1" - "taler.net/taler-go.git/pkg/merchant" + "github.com/schanzen/taler-go/pkg/merchant" ) type IdentityInfo struct {