Versions in this module Expand all Collapse all v1 v1.0.0 Jun 25, 2023 Changes in this version + var UtilFile = NewFile() + type File struct + func NewFile() *File + func (f *File) CreateFile(filename string) error + func (f *File) GetFileLines(filename string) (fileLine int64, err error) + func (f *File) PathExists(path string) (bool, error) + type Misc struct + func NewMisc() *Misc + func (m *Misc) RandString(strlen int) string + func (misc *Misc) FormatUnixTime(unixTime int64) string + func (misc *Misc) HttpGet(queryUrl string, queryValues map[string]string, headerValues map[string]string, ...) (body string, code int, err error) + func (misc *Misc) HttpPost(queryUrl string, queryValues map[string]string, headerValues map[string]string, ...) (body string, code int, err error) + func (misc *Misc) MapIntersect(defaultMap map[string]interface{}, inputMap map[string]interface{}) map[string]interface{}