23 lines
386 B
TypeScript
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
|
|
}
|
|
}
|