1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 04:21:57 +00:00
This commit is contained in:
Gerasimos (Makis) Maropoulos
2023-12-25 23:55:31 +02:00
parent 26422ebaf4
commit fb8d8d0881
2 changed files with 15 additions and 13 deletions

View File

@@ -13,7 +13,7 @@ var (
Clock func() time.Time = time.Now
// ExpireDelete may be set on Cookie.Expire for expiring the given cookie.
ExpireDelete = time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
ExpireDelete = time.Unix(0, 0) // time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
)
// LifeTime controls the session expiration datetime.