10 lines
198 B
Go
10 lines
198 B
Go
package httputil
|
|
|
|
import "net/http"
|
|
|
|
func HelloWorld(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write([]byte("hello world"))
|
|
})
|
|
}
|