Files
mailer/ts/storage/index.ts
2025-10-24 08:09:29 +00:00

23 lines
386 B
TypeScript

/**
* Storage module stub
* Simplified storage manager for mailer
*/
export interface IStorageOptions {
dataDir?: string;
}
export class StorageManager {
constructor(options?: IStorageOptions) {
// Stub implementation
}
async get(key: string): Promise<any> {
return null;
}
async set(key: string, value: any): Promise<void> {
// Stub implementation
}
}