mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03:00
12 lines
264 B
Go
12 lines
264 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
//DisableCache writes the disable cache header on the responses
|
||
|
func DisableCache(w *http.ResponseWriter) {
|
||
|
(*w).Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
|
||
|
(*w).Header().Set("Expires", "0")
|
||
|
}
|