mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { MessagingService } from "../abstractions/messaging.service";
|
|
|
|
export class NoopMessagingService implements MessagingService {
|
|
send(subscriber: string, arg: any = {}) {
|
|
// Do nothing...
|
|
}
|
|
}
|