fix: 修复没有自动创建result文件夹

This commit is contained in:
余泓铮
2024-08-06 14:38:52 +08:00
parent b5057d0810
commit df2e971757
3 changed files with 25 additions and 14 deletions

11
hrp/pkg/utf7/utf7_test.go Normal file
View File

@@ -0,0 +1,11 @@
package utf7
import "testing"
func Test_Decode(t *testing.T) {
str, err := Encoding.NewDecoder().String("&j71bgXcBbIiWM14CZbBsEV4CbBFlz4hX-36-4")
if err != nil {
t.Fatal(err)
}
t.Log(str)
}