SimpleCloudNotifier/scnserver/models/utils.go

22 lines
354 B
Go
Raw Normal View History

2022-11-18 21:25:40 +01:00
package models
import (
"gogs.mikescher.com/BlackForestBytes/goext/langext"
"time"
)
func timeOptFmt(t *time.Time, fmt string) *string {
if t == nil {
return nil
} else {
return langext.Ptr(t.Format(fmt))
}
}
2022-11-18 23:12:37 +01:00
func timeOptFromMilli(millis *int64) *time.Time {
if millis == nil {
return nil
}
return langext.Ptr(time.UnixMilli(*millis))
}