feat: Add CacheX for cache management (#281)

This commit is contained in:
2024-11-11 16:50:45 +01:00
committed by GitHub
parent e501faa823
commit 1f3aae5401
7 changed files with 58 additions and 303 deletions

View File

@ -1,6 +1,6 @@
import type CacheInterface from './Psr/SimpleCache/CacheInterface'
import LocalStorageCache from './Psr/SimpleCache/LocalStorageCache'
import MemoryCache from './Psr/SimpleCache/MemoryCache'
import type CacheInterface from '@cachex/core'
import LocalStorageCache from '@cachex/web-storage'
import MemoryCache from '@cachex/memory'
import Query from './Query'
import Endpoint from './endpoints/Endpoint'
import SimpleEndpoint from './endpoints/SimpleEndpoint'
@ -402,4 +402,3 @@ export * from './models/Card'
export {
Query
}