adding time in go

Developer from somewhere

import "time"

now := time.Now()
end := now.Add(1 * time.Hour)
// formatting as iso8601
now_string := now.Format(time.RFC3339)