From 371efd46c11f321c987b6c032f9594aa8f59a565 Mon Sep 17 00:00:00 2001 From: Sylvain Corsini Date: Tue, 24 Aug 2021 16:11:03 +0200 Subject: [PATCH] fix: use the latest version of validator lib --- website/content/guide/request.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/guide/request.md b/website/content/guide/request.md index cb06b7e6..4ae0d4cc 100644 --- a/website/content/guide/request.md +++ b/website/content/guide/request.md @@ -87,9 +87,9 @@ Example below uses https://github.com/go-playground/validator framework for vali package main import ( - "net/http" + "net/http" - "github.com/go-playground/validator" + "github.com/go-playground/validator/v10" "github.com/labstack/echo/v4" "github.com/labstack/echo/v4/middleware" )