update server context to only include the notification repository

This commit is contained in:
2025-03-27 10:42:43 -07:00
parent bda46d6808
commit 3761f43909
7 changed files with 32 additions and 22 deletions

View File

@@ -1,7 +1,8 @@
import { ETANotificationScheduler } from "./notifications/schedulers/ETANotificationScheduler";
import { ShuttleGetterSetterRepository } from "./repositories/ShuttleGetterSetterRepository";
import { NotificationRepository } from "./repositories/NotificationRepository";
export interface ServerContext {
shuttleRepository: ShuttleGetterSetterRepository;
notificationService: ETANotificationScheduler;
notificationRepository: NotificationRepository;
}