Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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