package utils import "time" func DateExpired(t time.Time) bool { return time.Now().Before(t) }