mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
8 lines
107 B
Go
8 lines
107 B
Go
package job
|
|
|
|
var JobQueue chan int64 = make(chan int64)
|
|
|
|
func Schedule(jobID int64) {
|
|
JobQueue <- jobID
|
|
}
|