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