mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-14 08:41:15 +10:00
23 lines
399 B
TypeScript
23 lines
399 B
TypeScript
export const taskGroups = {
|
|
"cleanup:invitations": {
|
|
concurrency: false,
|
|
},
|
|
"cleanup:objects": {
|
|
concurrency: false,
|
|
},
|
|
"cleanup:sessions": {
|
|
concurrency: false,
|
|
},
|
|
"check:update": {
|
|
concurrency: false,
|
|
},
|
|
"import:game": {
|
|
concurrency: true,
|
|
},
|
|
"ludusavi:import": {
|
|
concurrency: false,
|
|
},
|
|
} as const;
|
|
|
|
export type TaskGroup = keyof typeof taskGroups;
|