Package to convert time to Internet Time (.beats) and the other way
funcDurationToInternetTime(durationStrstring) (float64, error)Example:
internetTimeDuration:=DurationToInternetTime("1h10m12s")funcInternetToStandardTime(beatsfloat64) time.TimeExample:
standardTime:=InternetToStandardTime(413)funcStandardToInternetTime(t time.Time) float64Example:
now:=time.Now()
internetTime:=StandardToInternetTime(now)