mirror-nourybot/internal/humanize/time.go
2023-01-04 15:32:17 +01:00

12 lines
131 B
Go

package humanize
import (
"time"
"github.com/dustin/go-humanize"
)
func Time(t time.Time) string {
return humanize.Time(t)
}