Static Assets of a Go Web App

These are lessons I've learned from developing a web app using the Go programming language.

One of the functions I've used often when developing Django apps is the STATIC_PATH variable. I was able to implement something similar in my Go web app.

import (
  "github.com/gorilla/mux"
)

var ...
more ...