mirror of
https://github.com/usememos/memos.git
synced 2024-12-20 01:31:29 +03:00
16 lines
203 B
Go
16 lines
203 B
Go
package common
|
|
|
|
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")
|
|
}
|