From 70ac044d2e720789485b0e015c4425e5ceb95764 Mon Sep 17 00:00:00 2001 From: thinkerou Date: Fri, 14 Sep 2018 10:55:24 +0800 Subject: [PATCH] fix embedmd error --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a4bc4e76..9a97ec54 100644 --- a/README.md +++ b/README.md @@ -657,6 +657,7 @@ import ( "gopkg.in/go-playground/validator.v8" ) +// Booking contains binded and validated data. type Booking struct { CheckIn time.Time `form:"check_in" binding:"required,bookabledate" time_format:"2006-01-02"` CheckOut time.Time `form:"check_out" binding:"required,gtfield=CheckIn" time_format:"2006-01-02"`