notes/go.md
2021-09-01 13:23:40 +01:00

402 B
Executable File

author date title
Alvie Rahman \today Go (golang)

Getting Up to Speed With Go

Probably the most useful resoure I found was the Tour of Go. It's easy to understand and teaches you all you need to know.

Making a web api

We need to memorize the Handler interface.

type Handler interface {
    ServerHTTP(ResponseWriter, *Request)
}