app
cmd
myapp
main.go
web
static
css/
img/
type Server struct {
router *mux.Router
....
}
s.router.Handle("/static/", http.FileServer(http.Dir("web/static/")))
s.router.HandleFunc("/", s.handleIndex())