Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314
  1. package middleware
  2. import "net/http"
  3. // NoCache writes the proper response headers to inform
  4. // the client side not to cache the response's content.
  5. func NoCache(next http.Handler) http.Handler {
  6. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  7. w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
  8. w.Header().Set("Pragma", "no-cache")
  9. w.Header().Set("Expires", "0")
  10. next.ServeHTTP(w, r)
  11. })
  12. }