transfer.sh/transfersh-server/vendor/github.com/PuerkitoBio/ghost/handlers/static.go
2016-07-11 22:15:19 +02:00

13 lines
297 B
Go

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)
}
}