mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 10:40:43 +00:00
4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
export function createCronExecutionId(jobId: string, startedAt: number): string {
|
|
return `cron:${jobId}:${startedAt}`;
|
|
}
|