From 48e33bd9c1a7220f0c1464b5b3e8337d18d1e9b7 Mon Sep 17 00:00:00 2001 From: linbergil Date: Tue, 31 Oct 2023 01:47:18 +0300 Subject: [PATCH] test sign --- go.mod | 1 - unpack.go | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 410ae88..903e38a 100644 --- a/go.mod +++ b/go.mod @@ -6,6 +6,5 @@ require github.com/stretchr/testify v1.7.0 require ( github.com/davecgh/go-spew v1.1.1 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect ) diff --git a/unpack.go b/unpack.go index 1ba78ff..75d811a 100644 --- a/unpack.go +++ b/unpack.go @@ -8,5 +8,6 @@ var ErrInvalidString = errors.New("invalid string") func Unpack(_ string) (string, error) { // Place your code here. + // test return "", nil }