Micro wrapper on go's HTTP handling. Created for testing purposes.
package main
import (
"net/http"
uweb "github.com/ericmdantas/go-uweb"
)
func main() {
u := uweb.New()
u.GET("/hello_world", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("hello world!"))
})
http.ListenAndServe(":1037", u)
}No.