shelves/backend/httpx/httpx.go
2024-11-15 11:09:19 -05:00

11 lines
171 B
Go

package httpx
import (
"net/http"
)
func SeeOther(w http.ResponseWriter, location string) {
w.Header().Add("Location", location)
w.WriteHeader(http.StatusSeeOther)
}