1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-31 23:53:37 +00:00

move shared CLI items to jslib

This commit is contained in:
Kyle Spearrin
2019-03-15 22:33:19 -04:00
parent 49e06e77c4
commit 13a160fb79
11 changed files with 380 additions and 4 deletions

View File

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