10 lines
132 B
Go
10 lines
132 B
Go
package utils
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func HtmxRedirect(w http.ResponseWriter, url string) {
|
|
w.Header().Add("HX-Redirect", "/")
|
|
}
|