mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
16 lines
384 B
TypeScript
16 lines
384 B
TypeScript
import { StorageService } from 'jslib/abstractions/storage.service';
|
|
|
|
export class NodeStorageService implements StorageService {
|
|
get<T>(key: string): Promise<T> {
|
|
return Promise.resolve(null);
|
|
}
|
|
|
|
save(key: string, obj: any): Promise<any> {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
remove(key: string): Promise<any> {
|
|
return Promise.resolve();
|
|
}
|
|
}
|