增加diff基础信息的结构定义

This commit is contained in:
2024-03-08 11:33:54 +08:00
parent 270c4fcfd4
commit 9b469e0ac2
2 changed files with 108 additions and 0 deletions

15
tool/diff.go Normal file
View File

@ -0,0 +1,15 @@
// Package tool ...
//
// Description : 对比两个数据是否相同 + 构建不同数据的前后值
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2024-03-08 11:03
package tool
var (
Diff = &diff{}
)
type diff struct {
}