mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
9 lines
192 B
TypeScript
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();
|
|
};
|