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

14 lines
217 B
Go
Raw Normal View History

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