webstatic

Web Static is the Go handler for handle static files,
returns not found for directory
Usage
http.Handle("/-/", http.StripPrefix("/-", webstatic.NewDir("assets")))
or
http.Handle("/-/", http.StripPrefix("/-", webstatic.New(webstatic.Config{
Dir: "assets",
CacheControl: "public, max-age=3600",
})))
License
MIT