14 lines
342 B
Go
14 lines
342 B
Go
package middlewares
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// AssetCaching() is a middleware to set the cache-control header,
|
|
// configured for /assets/
|
|
func AssetCaching(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Cache-Control", "max-age=3600")
|
|
next.ServeHTTP(w, r)
|
|
})
|
|
}
|