mirror of
https://github.com/donl/gPanel.git
synced 2026-05-26 22:06:36 -06:00
9 lines
243 B
Go
9 lines
243 B
Go
// Package routing contains various functions related to HTTP routing
|
|
package routing
|
|
|
|
import "net/http"
|
|
|
|
func HttpThrowStatus(code int, context http.ResponseWriter) {
|
|
context.WriteHeader(code)
|
|
context.Write([]byte(http.StatusText(code)))
|
|
}
|