From a01c1fc404409737aa1d2bb196e57b9e2675ccd3 Mon Sep 17 00:00:00 2001 From: Inhere Date: Thu, 25 Oct 2018 03:40:41 +0800 Subject: [PATCH] add package validate (#2187) package https://github.com/gookit/validate --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 80b36170..208692aa 100644 --- a/README.md +++ b/README.md @@ -1529,6 +1529,7 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis * [govalidator](https://github.com/asaskevich/govalidator) - Validators and sanitizers for strings, numerics, slices and structs. * [govalidator](https://github.com/thedevsaddam/govalidator) - Validate Golang request data with simple rules. Highly inspired by Laravel's request validation. * [ozzo-validation](https://github.com/go-ozzo/ozzo-validation) - Supports validation of various data types (structs, strings, maps, slices, etc.) with configurable and extensible validation rules specified in usual code constructs instead of struct tags. +* [validate](https://github.com/gookit/validate) - Go package for data validation and filtering. support validate Map, Struct, Request(Form, JSON, url.Values, Uploaded Files) data and more features. * [validate](https://github.com/markbates/validate) - This package provides a framework for writing validations for Go applications. * [validator](https://github.com/go-playground/validator) - Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving.