time.go

1package bug
2
3import "time"
4
5type Timestamp int64
6
7func (t Timestamp) Time() time.Time {
8	return time.Unix(int64(t), 0)
9}