newsbot-api/internal/services/cache/common.go

14 lines
217 B
Go

package cache
import (
"errors"
"git.jamestombleson.com/jtom38/newsbot-api/internal/domain"
)
var (
cacheStorage []*domain.CacheItem
ErrCacheRecordMissing = errors.New("unable to find the requested record")
)