mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-19 20:26:26 +08:00
9 lines
186 B
Go
9 lines
186 B
Go
package utils
|
|
|
|
import "time"
|
|
|
|
func MustParseCNTime(str string) time.Time {
|
|
lastOpTime, _ := time.ParseInLocation("2006-01-02 15:04:05 -07", str+" +08", time.Local)
|
|
return lastOpTime
|
|
}
|