diff options
Diffstat (limited to 'svc/cache.go')
-rw-r--r-- | svc/cache.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/svc/cache.go b/svc/cache.go index fb6a9ab..db427db 100644 --- a/svc/cache.go +++ b/svc/cache.go @@ -5,9 +5,25 @@ import ( "io/ioutil" "log" "os" + "sync" "time" ) +// RemoteRegistries holds a list of remote registries to +// periodically scrape for new users. The remote registries +// must have been added via POST like a user. +type RemoteRegistries struct { + Mu sync.RWMutex + List []string +} + +type staticAssets struct { + index []byte + indexMod time.Time + css []byte + cssMod time.Time +} + func cacheTimer() bool { confObj.Mu.RLock() answer := time.Since(confObj.LastCache) > confObj.CacheInterval |