mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import nodeCron from 'node-cron';
|
|
|
|
export const setCron = (time: string, cb: () => void) => {
|
|
// second minute hour day month week
|
|
return nodeCron.schedule(time, cb);
|
|
};
|