summaryrefslogtreecommitdiff
path: root/utils/htmx.go
blob: 3cdd35e286d634e82155df8080e311a62397cadd (plain)
1
2
3
4
5
6
7
8
9
package utils

import (
	"net/http"
)

func HtmxRedirect(w http.ResponseWriter, url string) {
	w.Header().Add("HX-Redirect", "/")
}