save code

This commit is contained in:
白茶清欢 2023-03-28 18:58:39 +08:00
parent 41d97948c0
commit 055c833fce
2 changed files with 18 additions and 1 deletions

2
go.mod
View File

@ -1,6 +1,6 @@
module git.zhangdeman.cn/zhangdeman/json_filter
go 1.17
go 1.18
require (
git.zhangdeman.cn/zhangdeman/easylock v0.0.0-20220627070212-c590a0a1c216

17
tree/generate.go Normal file
View File

@ -0,0 +1,17 @@
// Package tree ...
//
// Description : tree ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-03-28 18:42
package tree
// New 生成一棵JSON树
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 18:42 2023/3/28
func New(jsonData string) *Node {
return nil
}