From bbb477e5bdd7689cfc5bc7096c591394c892b85c Mon Sep 17 00:00:00 2001 From: Patrick Mylund Nielsen Date: Sun, 29 Jan 2012 04:44:34 +0100 Subject: [PATCH] Version 1.0 Added Version constant --- cache.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cache.go b/cache.go index a6bc326..83f155a 100644 --- a/cache.go +++ b/cache.go @@ -11,6 +11,8 @@ import ( "time" ) +const Version = "1.0" + type Item struct { Object interface{} Expiration *time.Time