add notification service to server context

This commit is contained in:
2025-02-04 10:12:19 -08:00
parent 6c31346d65
commit 82a70ea04e
2 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
import { GetterRepository } from "./repositories/GetterRepository";
import { NotificationService } from "./services/NotificationService";
export interface ServerContext {
repository: GetterRepository;
}
notificationService: NotificationService;
}