【优化】

master
李光春 3 years ago
parent 740f7d060f
commit 130895c22d

3
.gitignore vendored

@ -4,4 +4,5 @@
.idea
.vscode
*.log
git.sh
git.sh
gitv.sh

@ -1,4 +1,4 @@
package helper_aes
package aes
import (
"bytes"

@ -1,4 +1,4 @@
package helper_decimal
package decimal
import (
"fmt"

@ -1,4 +1,4 @@
package helper_json
package json
import "encoding/json"

@ -1,4 +1,4 @@
package helper_mail
package mail
import (
"fmt"

@ -1,4 +1,4 @@
package helper_md5
package md5
import (
"crypto/md5"
@ -9,4 +9,4 @@ func MD5(str string) string {
s := md5.New()
s.Write([]byte(str))
return hex.EncodeToString(s.Sum(nil))
}
}

@ -1,4 +1,4 @@
package helper_rsa
package rsa
import (
"crypto/rand"

@ -1,4 +1,4 @@
package helper_time
package time
import "time"

@ -1,4 +1,4 @@
package helper_uuid
package uuid
import "github.com/google/uuid"
Loading…
Cancel
Save