mirror of https://github.com/gin-gonic/gin.git
modify readme example code (#1961)
This commit is contained in:
parent
31342fc03f
commit
46acb91996
|
@ -756,7 +756,7 @@ func bookableDate(
|
||||||
) bool {
|
) bool {
|
||||||
if date, ok := field.Interface().(time.Time); ok {
|
if date, ok := field.Interface().(time.Time); ok {
|
||||||
today := time.Now()
|
today := time.Now()
|
||||||
if today.Year() > date.Year() || today.YearDay() > date.YearDay() {
|
if today.After(date) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue