summary refs log tree commit diff stats
path: root/cache/types.go
blob: 8f364d53738ce9e07e2148d206c87aa65c94f8e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cache

import (
	"sync"
)

// Indexer allows for other uses of the Index functions
type Indexer interface {
	AddUser(string, string)
	DelUser(string)
}

// UserIndex provides an index of users by URL
type UserIndex map[string]*Data

// Data from user's twtxt.txt
type Data struct {
	nick   string
	url    string
	status []string
}

// Mutex to control access to the User Index
var imutex = sync.RWMutex{}