6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
import type { NotificationService } from "./notification-service";
|
|
|
|
export class NoopNotificationService implements NotificationService {
|
|
async notify() {}
|
|
}
|