From d182b35d5693d6db4128d08ba2d2fb59c7b082ca Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Sun, 26 Feb 2023 15:26:59 -0500 Subject: [PATCH] updated helper module --- go.mod | 2 +- snipcart/snipcart.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index ca70572..4433bd0 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,6 @@ module github.com/debyltech/go-snipcart go 1.20 require ( - github.com/debyltech/go-helpers v1.0.5 + github.com/debyltech/go-helpers v1.1.0 github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e ) diff --git a/snipcart/snipcart.go b/snipcart/snipcart.go index 2d59868..677d1fd 100644 --- a/snipcart/snipcart.go +++ b/snipcart/snipcart.go @@ -6,7 +6,7 @@ import ( "errors" "fmt" - helper "github.com/debyltech/go-helpers" + helper "github.com/debyltech/go-helpers/json" "github.com/skip2/go-qrcode" )