Files
validate/README.md
T

12 lines
407 B
Markdown
Raw Normal View History

2024-06-21 21:54:44 +01:00
# Go Validate
A suite of straightforward validation functions. You put something in, you get back `nil` or an error.
## Error handling
2024-07-18 06:53:20 +01:00
You can use `errors.Is()` to ascertain the type of errors returned by validation functions. This may be helpful to control side effects, particularly if you are using multiple validators or want to change the error message.
2024-06-21 21:54:44 +01:00
## License
See [LICENSE.md](../LICENSE.md)