How can I get the timestamp of the next hour?
Example: Something expires in 1 hours, so it would be time.Now() plus one hour
How can I do this?
Thanks!
time.Now().Add(time.Hour)
playground