Vladimir Almonte Rodríguez
Vladimir Almonte Rodríguez
add, multiply, on minus(invert), divide are in TL
you can do it with pureref
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...