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
21 lines
388 B
TypeScript
21 lines
388 B
TypeScript
/**
|
|
* @puaros/ipuaro - Local AI agent for codebase operations
|
|
*
|
|
* Main entry point for the library.
|
|
*/
|
|
|
|
// Domain exports
|
|
export * from "./domain/index.js"
|
|
|
|
// Application exports
|
|
export * from "./application/index.js"
|
|
|
|
// Shared exports
|
|
export * from "./shared/index.js"
|
|
|
|
// Infrastructure exports
|
|
export * from "./infrastructure/index.js"
|
|
|
|
// Version
|
|
export const VERSION = "0.2.0"
|