mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-02-01 03:18:05 +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)
|
||
|
}
|
||
|
}
|