transfer.sh/vendor/github.com/PuerkitoBio/ghost/handlers/static.go

14 lines
297 B
Go
Raw Normal View History

2016-07-11 22:15:19 +02:00
package handlers
import (
"net/http"
)
// StaticFileHandler, unlike net/http.FileServer, serves the contents of a specific
// file when it is called.
func StaticFileHandler(path string) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, path)
}
}