okapi
okapi copied to clipboard
Add support for multipart form data
I can do this two ways:
- Introduce IO into the
MonadOkapistack and parse multipart form data inside a Okapi parser - Parse the multipart form data from the request before it is passed into Okapi. We can avoid introducing IO into the MonadOkapi constraint this way. Have to change
Bodyto sum type representing the different types of form data.