mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
13 lines
193 B
Crystal
13 lines
193 B
Crystal
module Invidious::Jobs
|
|
JOBS = [] of BaseJob
|
|
|
|
def self.register(job : BaseJob)
|
|
JOBS << job
|
|
end
|
|
|
|
def self.start_all
|
|
JOBS.each do |job|
|
|
spawn { job.begin }
|
|
end
|
|
end
|
|
end
|