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