---------
Co-authored-by: Oleg Lobanov <oleg@lobanov.me>
(cherry picked from commit 8838a09cf5)
10 lines
190 B
Go
10 lines
190 B
Go
//go:build !dev
|
|
// +build !dev
|
|
|
|
package http
|
|
|
|
// global headers to append to every response
|
|
var globalHeaders = map[string]string{
|
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
|
}
|