1
0
Fork 0
mirror of https://github.com/lyx0/nourybot.git synced 2024-11-13 19:49:55 +01:00
mirror-nourybot/pkg/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)
}