1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package gotool
- import (
- "github.com/druidcaesa/gotool/array"
- "github.com/druidcaesa/gotool/bcrypt"
- "github.com/druidcaesa/gotool/captcha"
- "github.com/druidcaesa/gotool/compression"
- "github.com/druidcaesa/gotool/convert"
- "github.com/druidcaesa/gotool/date"
- "github.com/druidcaesa/gotool/desensitized"
- "github.com/druidcaesa/gotool/id_utils"
- "github.com/druidcaesa/gotool/logs"
- "github.com/druidcaesa/gotool/openfile"
- "github.com/druidcaesa/gotool/page"
- "github.com/druidcaesa/gotool/pretty"
- "github.com/druidcaesa/gotool/request"
- "github.com/druidcaesa/gotool/str"
- "github.com/druidcaesa/gotool/tree"
- )
- var (
- StrArrayUtils array.StrArray
- Logs logs.Logs
- BcryptUtils bcrypt.BcryptUtil
- DateUtil date.Date
- StrUtils str.StrUtils
- HttpUtils request.Request
- ConvertUtils convert.Convert
- PageUtils page.Page
- IdUtils id_utils.IdUtils
- ZipUtils compression.ZipUtils
- FileUtils openfile.FileUtils
- CaptchaUtils captcha.Captcha
- DesensitizedUtils desensitized.Desensitized
- TreeUtils tree.Tree
- PrettyUtils pretty.PrettyUtils
- )
|