mirror of
https://github.com/goharbor/harbor
synced 2025-04-29 10:12:56 +00:00
9 lines
137 B
Go
9 lines
137 B
Go
package job
|
|
|
|
var jobQueue = make(chan int64)
|
|
|
|
// Schedule put a job id into job queue.
|
|
func Schedule(jobID int64) {
|
|
jobQueue <- jobID
|
|
}
|