memos/utils/common.go
2021-12-12 14:39:28 +08:00

16 lines
202 B
Go

package utils
import (
"time"
"github.com/google/uuid"
)
func GenUUID() string {
return uuid.New().String()
}
func GetNowDateTimeStr() string {
return time.Now().Format("2006/01/02 15:04:05")
}