From e719e97d5f75b304c599e93cb667dda6df27d212 Mon Sep 17 00:00:00 2001 From: Streppel Date: Wed, 15 Jan 2020 16:03:31 -0300 Subject: [PATCH] Update readme on custom validation fields V10 now uses a different package path. More at https://github.com/go-playground/validator/releases/tag/v10.0.0 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e0ceb27..c4b59ae9 100644 --- a/README.md +++ b/README.md @@ -707,7 +707,7 @@ import ( "github.com/gin-gonic/gin" "github.com/gin-gonic/gin/binding" - "gopkg.in/go-playground/validator.v10" + "github.com/go-playground/validator/v10" ) // Booking contains binded and validated data.