shop.tonybtw.com

shop.tonybtw.com

https://git.tonybtw.com/shop.tonybtw.com.git git://git.tonybtw.com/shop.tonybtw.com.git
323 bytes raw
1
package lib
2
3
import (
4
	"html"
5
	"net/http"
6
)
7
8
func HTML_Escape(s string) string {
9
	return html.EscapeString(s)
10
}
11
12
func Is_HTMX_Request(r *http.Request) bool {
13
	return r.Header.Get("HX-Request") == "true"
14
}
15
16
func Redirect(w http.ResponseWriter, r *http.Request, url string) {
17
	http.Redirect(w, r, url, http.StatusSeeOther)
18
}