mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-27 21:07:01 -06:00
4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
export function createCronExecutionId(jobId: string, startedAt: number): string {
|
|
return `cron:${jobId}:${startedAt}`;
|
|
}
|