1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-28 22:23:28 +00:00
Files
browser/src/services/noopMessaging.service.ts
Kyle Spearrin 6fff69c0ea logout command
2018-05-15 23:26:36 -04:00

8 lines
217 B
TypeScript

import { MessagingService } from 'jslib/abstractions/messaging.service';
export class NoopMessagingService implements MessagingService {
send(subscriber: string, arg: any = {}) {
// Do nothing...
}
}