升级字符串操作

This commit is contained in:
2022-05-14 15:11:45 +08:00
parent 5c78dd1201
commit 8d84b733b8
2 changed files with 14 additions and 3 deletions

View File

@ -18,6 +18,8 @@ var (
IP *ip
// JSON ...
JSON *ownJSON
// String ...
String *stringOperate
)
func init() {
@ -26,4 +28,5 @@ func init() {
Hash = &hash{}
IP = &ip{}
JSON = &ownJSON{}
String = &stringOperate{}
}