project init

This commit is contained in:
liangzy 2020-04-01 11:51:04 +08:00
parent 6f877bb498
commit 6e70217644

View File

@ -1,5 +1,19 @@
package grlogs package grlogs
import (
"crypto/md5"
"encoding/hex"
"fmt"
"io/ioutil"
"math/rand"
"os"
"path"
"reflect"
"runtime"
"strings"
"time"
)
//传入一个字符串返回一个加密后的md5 //传入一个字符串返回一个加密后的md5
func Md5(str string) string { func Md5(str string) string {
data := []byte(str) data := []byte(str)