neoreids / timeago

A small golang library to make calculation of time duration easier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timeago

Build Status Coverage Status

TimeAgo is a library used to calculate how much time has been passed between two dates, this library is mainly based on time type of go.

Example

import (
  "fmt"
  "time"
  timeago "github.com/ararog/timeago"
)

d, _ := time.ParseDuration("-3h")
start := time.Now()
end := time.Now().Add(d)
got, _ := timeago.TimeAgoWithTime(start, end)
fmt.Printf("Output: %s\n", got)

About

A small golang library to make calculation of time duration easier

License:MIT License


Languages

Language:Go 100.0%