import { Injectable } from "@nestjs/common"; @Injectable() export abstract class NotificationStrategy { abstract send(recipient: string, message: string): Promise }