No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

14 líneas
297 B

  1. package handlers
  2. import (
  3. "net/http"
  4. )
  5. // StaticFileHandler, unlike net/http.FileServer, serves the contents of a specific
  6. // file when it is called.
  7. func StaticFileHandler(path string) http.HandlerFunc {
  8. return func(w http.ResponseWriter, r *http.Request) {
  9. http.ServeFile(w, r, path)
  10. }
  11. }