19 lines
303 B
Go
19 lines
303 B
Go
// Package sjson_hack ...
|
|
//
|
|
// Description : sjson_hack ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2024-12-05 17:32
|
|
package sjson_hack
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSet(t *testing.T) {
|
|
res, err := Set("{}", "{{#a.b#}}.c.{{#c.d#}}.e", "test")
|
|
fmt.Println(res, err)
|
|
}
|