mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 07:16:53 +05:00
- Add RedisClient with connection management and AOF config - Add RedisStorage implementing full IStorage interface - Add Redis key schema for project and session data - Add generateProjectName() utility - Add 68 unit tests for Redis module (159 total) - Update ESLint: no-unnecessary-type-parameters as warn
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
// Storage module exports
|
|
export { RedisClient } from "./RedisClient.js"
|
|
export { RedisStorage } from "./RedisStorage.js"
|
|
export {
|
|
ProjectKeys,
|
|
SessionKeys,
|
|
IndexFields,
|
|
SessionFields,
|
|
generateProjectName,
|
|
} from "./schema.js"
|