mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-05 11:53:38 +00:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { Injectable } from "@nestjs/common";
|
|
|
|
@Injectable()
|
|
export abstract class NotificationStrategy {
|
|
abstract send(recipient: string, message: string): Promise<boolean>
|
|
} |