Vladimir Almonte Rodríguez

Results 4 comments of Vladimir Almonte Rodríguez

add, multiply, on minus(invert), divide are in TL

Hi, the error occurs by using strong validation instead of partial validation from [Validator](https://pkg.go.dev/github.com/go-playground/validator/[email protected]#Validate.StructPartial): It can be fixed by changing some validation code: ```go func validate(a any, partial bool) (err...

Yes, you are right. For that, I wrote a new method that validates every field except empty fields: You can use this solution to remplace `v.StructPartial()` to `StructPath()` ```go package...