Anatoly
Anatoly
To make it work with arrays `[]uuid.UUID` we might add to `func setWithProperType`: ```golang case reflect.Array: if a, e := trySetCustom(val, value); a || e != nil { return e...
This function can be used to try to assign UUID to reflect.Value. ```golang package binding import ( uuid "github.com/satori/go.uuid" "github.com/stretchr/testify/assert" "reflect" "testing" ) func tryAssignUUID(s string, value reflect.Value) bool {...
It would be preferable to merge #3045, though.