1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/services/noopMessaging.service.ts

8 lines
214 B
TypeScript
Raw Normal View History

2019-03-16 03:33:19 +01:00
import { MessagingService } from '../abstractions/messaging.service';
export class NoopMessagingService implements MessagingService {
send(subscriber: string, arg: any = {}) {
// Do nothing...
}
}