12345678910111213141516171819202122232425 |
- package binding
- import (
- "net/http"
-
- )
- type msgpackBinding struct{}
- func (msgpackBinding) Name() string {
- return "msgpack"
- }
- func (msgpackBinding) Bind(req *http.Request, obj interface{}) error {
-
- return validate(obj)
- }
|