timea.go
(did you see what I did there?) is a simple library to print given times in "time ago" manner.
Example:
go get github.com/caarlos0/timea.go
Simple usage:
package main
import (
"fmt"
"time"
timeago "github.com/caarlos0/timea.go"
)
func main() {
fmt.Println(timeago.Of(time.Now().Add(-5 * time.Second)))
}