Golang mengonversi float ke waktu

integ, decim := math.Modf(timeFloat);
time.Unix(int64(integ), int64(decim*(1e9)));
imaskm