Times and Dates

Let’s learn about times and dates in the Go language.

Often, we need to work with date and time information to store the time an entry was last used in a database or the time an entry was inserted into a database, which brings us to another interesting topic: working with dates and times in Go.

The time.Time

...