summary refs log tree commit diff stats
path: root/cache/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/types.go')
-rw-r--r--cache/types.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/cache/types.go b/cache/types.go
index 8f364d5..ed270c3 100644
--- a/cache/types.go
+++ b/cache/types.go
@@ -2,6 +2,7 @@ package cache
 
 import (
 	"sync"
+	"time"
 )
 
 // Indexer allows for other uses of the Index functions
@@ -15,9 +16,10 @@ type UserIndex map[string]*Data
 
 // Data from user's twtxt.txt
 type Data struct {
-	nick   string
-	url    string
-	status []string
+	nick    string
+	date    time.Time
+	apidate []byte
+	status  []string
 }
 
 // Mutex to control access to the User Index