fix: use utils.Log in some places

This commit is contained in:
Noah Hsu
2022-08-30 16:13:01 +08:00
parent 615e5dd118
commit a6b9dbfbe4
7 changed files with 15 additions and 18 deletions

View File

@ -1,9 +1,10 @@
package random
import (
"github.com/google/uuid"
"math/rand"
"time"
"github.com/google/uuid"
)
var Rand *rand.Rand
@ -19,7 +20,7 @@ func String(n int) string {
}
func Token() string {
return uuid.NewString() + String(64)
return "alist-" + uuid.NewString() + String(64)
}
func RangeInt64(left, right int64) int64 {