mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 11:19:14 +08:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { Cache } from "#/database/cache"
|
|
|
|
export function useCache() {
|
|
try {
|
|
const db = useDatabase()
|
|
if (db) return new Cache(db)
|
|
} catch (e) {
|
|
logger.error("failed to init database ", e)
|
|
}
|
|
}
|