Files
pdfmerge/internal/pdf/common/time.go
2025-12-15 17:44:00 +01:00

12 lines
163 B
Go

package common
import (
"time"
)
const timeFormat = "2 January 2006 at 15:04"
func UtcTimeFormat(t time.Time) string {
return t.Format(timeFormat) + " UTC"
}