8 lines
114 B
Go
8 lines
114 B
Go
package httpx
|
|
|
|
import "net/http"
|
|
|
|
func HxRefresh(w http.ResponseWriter) {
|
|
w.Header().Add("HX-Refresh", "true")
|
|
}
|