(data []byte)
| 73 | // Example: https://github.com/kataras/iris/blob/main/_examples/request-body/read-custom-per-type/main.go |
| 74 | BodyDecoder interface { |
| 75 | Decode(data []byte) error |
| 76 | } |
| 77 | |
| 78 | // BodyDecoderWithContext same as BodyDecoder but it can accept a standard context, |
no outgoing calls
no test coverage detected