Files
qinglong/back/loaders/bootAfter.ts
T
2025-02-20 02:18:59 +08:00

9 lines
192 B
TypeScript

import Container from 'typedi';
import CronService from '../services/cron';
export default async () => {
const cronService = Container.get(CronService);
await cronService.bootTask();
};