mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
15 lines
467 B
TypeScript
15 lines
467 B
TypeScript
import type { Job } from "./types";
|
|
import { messagesJob } from "./jobs/messages";
|
|
import { notificationsJob } from "./jobs/notifications";
|
|
import { forumsJob } from "./jobs/forums";
|
|
import { subjectsJob } from "./jobs/subjects";
|
|
import { assignmentsJob } from "./jobs/assignments";
|
|
|
|
export const jobs: Record<string, Job> = {
|
|
messages: messagesJob,
|
|
notifications: notificationsJob,
|
|
forums: forumsJob,
|
|
subjects: subjectsJob,
|
|
assignments: assignmentsJob,
|
|
};
|