memos/common/utils.go
2021-12-08 23:43:14 +08:00

16 lines
191 B
Go

package common
import (
"time"
"github.com/google/uuid"
)
func GenUUID() string {
return uuid.New().String()
}
func GetNowDateTimeStr() string {
return time.Now().Format("RFC3339")
}