mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 02:15:30 +01:00
9 lines
No EOL
210 B
Go
9 lines
No EOL
210 B
Go
package utils
|
|
|
|
import "time"
|
|
|
|
func GetYMDFromDatabaseDate(dateString string) string {
|
|
t, _ := time.Parse(time.RFC3339, dateString)
|
|
// https://stackoverflow.com/a/20234207 WTF?
|
|
return t.Format("2006-01-02")
|
|
} |