I need to convert milliseconds to time irrespective of time zone.
Below is sample code
i := 1481462220
tm := time.Unix(i, 0)
Currently time.Unix returns time specific to my machine's zone. So, if I change time zone of my machine, it returns a different time. What I need is time should be same irrespective of time zone of machine.