refactor: move pkg/utf7 to internal/utf7

This commit is contained in:
lilong.129
2025-02-06 11:32:46 +08:00
parent a578e92e00
commit 8a7b48a1af
6 changed files with 2 additions and 2 deletions
+11
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)
}