mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
191 B
Go
16 lines
191 B
Go
4 years ago
|
package common
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/google/uuid"
|
||
|
)
|
||
|
|
||
|
func GenUUID() string {
|
||
|
return uuid.New().String()
|
||
|
}
|
||
|
|
||
|
func GetNowDateTimeStr() string {
|
||
|
return time.Now().Format("RFC3339")
|
||
|
}
|