package
0.0.0-20150624210510-c0458863748e
Repository: https://github.com/golangdorks/endpoint.git
Documentation: pkg.go.dev
# README
Endpoint Example
To run the example, start the server
go run main.go
Get
$ curl http://localhost:8080/foo/something
the answer is 42
Post
$ echo '{"text": "Hello **world**!"}' | curl -H "Content-Type:application/json" -d @- http://localhost:8080/bar/baz
You posted {"text": "Hello **world**!"}