diff options
Diffstat (limited to 'internal/cache')
-rw-r--r-- | internal/cache/status.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/cache/status.go b/internal/cache/status.go index f6fe45d99..5ea528055 100644 --- a/internal/cache/status.go +++ b/internal/cache/status.go @@ -7,7 +7,7 @@ import ( "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" ) -// statusCache is a wrapper around ttlcache.Cache to provide URL and URI lookups for gtsmodel.Status +// StatusCache is a wrapper around ttlcache.Cache to provide URL and URI lookups for gtsmodel.Status type StatusCache struct { cache *ttlcache.Cache // map of IDs -> cached statuses urls map[string]string // map of status URLs -> IDs @@ -15,7 +15,7 @@ type StatusCache struct { mutex sync.Mutex } -// newStatusCache returns a new instantiated statusCache object +// NewStatusCache returns a new instantiated statusCache object func NewStatusCache() *StatusCache { c := StatusCache{ cache: ttlcache.NewCache(), |