mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { Redis } from "~/server/services/CacheService";
|
|
|
|
export default defineNitroPlugin(async nitroApp => {
|
|
try {
|
|
await Redis.init();
|
|
console.log('Cache connected')
|
|
} catch (ex) {
|
|
console.error(ex);
|
|
}
|
|
}) |