修复缓存
Build docker and publish / build (20.15.1) (push) Successful in 7m26s

This commit is contained in:
2026-03-06 21:58:29 -08:00
parent 19932bb9f7
commit 4d913c1728
175 changed files with 437 additions and 12104 deletions
-23
View File
@@ -1,23 +0,0 @@
package jsonx
import "testing"
type User struct {
Id int64
Name string
Age int64
}
func TestJson(t *testing.T) {
t.Log("TestJson")
user := &User{
Id: 1,
Name: "test",
Age: 18,
}
b, err := Marshal(user)
if err != nil {
t.Error(err)
}
t.Log(string(b))
}