Serving static files and web apps in Go
Go is a great language to write HTTP servers in, often using just the included batteries. This post shows a few examples of Go servers that serve
static
content. The examples range from a very simple purely static file server to a fairly complete web application bundled into a single Go program.
Source: Serving static files and web apps in Go, an article by Eli Bendersky.