10 lines
116 B
Go
10 lines
116 B
Go
package response
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func Status(w http.ResponseWriter, status int) {
|
|
w.WriteHeader(status)
|
|
}
|