mirror-nourybot/internal/humanize/time.go

12 lines
131 B
Go
Raw Normal View History

2022-08-07 16:35:49 +02:00
package humanize
import (
"time"
"github.com/dustin/go-humanize"
)
func Time(t time.Time) string {
return humanize.Time(t)
}