mirror of
https://github.com/usememos/memos.git
synced 2024-12-22 02:31:46 +03:00
16 lines
210 B
Go
16 lines
210 B
Go
package utils
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func GenUUID() string {
|
|
return uuid.New().String()
|
|
}
|
|
|
|
func GetNowDateTimeStr() string {
|
|
return time.Now().Local().Format("2006/01/02 15:04:05")
|
|
}
|