调整struct

This commit is contained in:
2022-05-14 15:22:53 +08:00
parent 8d84b733b8
commit 3b612857fe
2 changed files with 14 additions and 3 deletions

View File

@ -20,6 +20,8 @@ var (
JSON *ownJSON
// String ...
String *stringOperate
// Struct ...
Struct *ownStruct
)
func init() {
@ -29,4 +31,5 @@ func init() {
IP = &ip{}
JSON = &ownJSON{}
String = &stringOperate{}
Struct = &ownStruct{}
}