Comparaison du temps de Golang

func inTimeSpan(start, end, check time.Time) bool {
    return check.After(start) && check.Before(end)
}
Wandering Wolf