here is my request structure
type Request struct {
Workplace [][]int `json:"workplace" form:"workplace[][]"
}
and Content-Type: multipart/form-data
How can i get data by using Postman form-data?
Expected Receiving Result As :-
Workplace = [[1,2] [2,3] [4,5]]