# Functions
NewUnixTimeFromDuration creates a UnixTime as a duration of time since the UnixEpoch.
NewUnixTimeFromNanoseconds creates a UnixTime as a number of nanoseconds from the UnixEpoch.
NewUnixTimeFromSeconds creates a UnixTime as a number of seconds from the UnixEpoch.
ParseDate create a new Date from the passed string.
ParseTime to parse Time string to specified format.
UnixEpoch retreives the moment considered the Unix Epoch.
# Structs
Date defines a type similar to time.Time but assumes a layout of RFC3339 full-date (i.e., 2006-01-02).
Time defines a type similar to time.Time but assumes a layout of RFC3339 date-time (i.e., 2006-01-02T15:04:05Z).
TimeRFC1123 defines a type similar to time.Time but assumes a layout of RFC1123 date-time (i.e., Mon, 02 Jan 2006 15:04:05 MST).
# Type aliases
UnixTime marshals and unmarshals a time that is represented as the number of seconds (ignoring skip-seconds) since the Unix Epoch.