mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* feat: historical tasks in database, better scheduling, and unified API for accessing tasks * feat: new UI for everything * fix: add translations and fix formatting
13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
import taskHandler from "~/server/internal/tasks";
|
|
|
|
export default defineTask({
|
|
meta: {
|
|
name: "dailyTasks",
|
|
},
|
|
async run() {
|
|
await taskHandler.triggerDailyTasks();
|
|
|
|
return {};
|
|
},
|
|
});
|