ofw

Results 3 issues of ofw

It would be great to have ability to inherit some base behavior. For example, when each HTTP endpoint can return 400 and 500 error with a known schema. Now those...

enhancement

For me, `@body body` looks a bit strange and it would be great to not use `@body` decorator because we already have field `body` and can detect by name that...

The code uses the `len` check if min_lenth/max_length specified in schema. It should use `utf8.RuneCountInString` from `unicode/utf8` instead because `len("ó") == 2` while `utf8.RuneCountInString("ó") == 1` which is right. I...