Use readable timestamp for statuses

This commit is contained in:
r 2020-01-10 04:05:01 +00:00
parent cb56c459c5
commit fb20bdc65e
2 changed files with 6 additions and 1 deletions

View file

@ -41,6 +41,7 @@ func NewRenderer(templateGlobPattern string) (r *renderer, err error) {
"DisplayInteractionCount": DisplayInteractionCount,
"TimeSince": TimeSince,
"FormatTimeRFC3339": FormatTimeRFC3339,
"FormatTimeRFC822": FormatTimeRFC822,
}).ParseGlob(templateGlobPattern)
if err != nil {
return
@ -175,3 +176,7 @@ func TimeSince(t time.Time) string {
func FormatTimeRFC3339(t time.Time) string {
return t.Format(time.RFC3339)
}
func FormatTimeRFC822(t time.Time) string {
return t.Format(time.RFC822)
}