Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
type VectorizationProductForm struct {
Id int `json:"id" from:"id" binding:"required,gte=1"`
FileUrl string `json:"file_url" from:"file_url" binding:"required"`
}
Using "form" not working, but "from" is correct.
VERSION: