Don't use embedded struct for `GSTime`. Right now it is ``` type GSTime struct { time.Time } ``` Make it ``` type GSTime time.Time ``` so that we can use type conversion.