initial
This commit is contained in:
22
ts/storage/index.ts
Normal file
22
ts/storage/index.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user