7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
export const LIVE_VIDEO_START_LEAD_TIME_MS = 10_000
|
|
export const LIVE_VIDEO_START_JOB_TYPE = 'live-video-start'
|
|
|
|
export function getLiveVideoStartJobId (liveVideoId: number) {
|
|
return `live-video-start_${liveVideoId}`
|
|
}
|