mirror of
https://github.com/foomo/neosproxy.git
synced 2025-10-16 12:35:39 +00:00
10 lines
321 B
Go
10 lines
321 B
Go
package cache
|
|
|
|
import "errors"
|
|
|
|
// ErrorNoNewExort error in case of no new export
|
|
var ErrorNoNewExort = errors.New("hash match - no new contentserver export")
|
|
|
|
// ErrorFileNotExists in case the contentserver export file does not yet exist
|
|
var ErrorFileNotExists = errors.New("contentserver export cache file not exists")
|