## Description - Sample File: ## Acceptance Criteria - If the request is a multipart request (Check the Content-Type header: If it starts with `multipart/form-data`) - Show the Multipart tab on the Request Tab (Don't implement on the Response Tab) - Display Multiple part as a table view  - Make sure the Body Tab renders correctly  - Able to export the FILE to Desktop -> Export with filename + extension -> Able to open it without any error. ## Logic - Implement the class `MultipartService` to handle the parser - Use this lib: https://www.npmjs.com/package/parse-multipart-data - Write Unit Test to try to parse a given Body (Multipart includes text, and Binary File) -> Get data correctly. ## How to test - Use Insomnia or Postman to make a Multipart request - Use multiple Texts and Files for testing - Make sure Proxyman can show the Multipart correctly. <img width="508" alt="Screenshot 2023-09-25 at 10 04 39" src="https://github.com/ProxymanApp/proxyman-windows-linux/assets/5878421/55f4414b-451f-4454-8bd3-72024cdceadb">
Description
Acceptance Criteria
multipart/form-data)Make sure the Body Tab renders correctly

Able to export the FILE to Desktop -> Export with filename + extension -> Able to open it without any error.
Logic
MultipartServiceto handle the parserHow to test