mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2025-12-25 12:28:50 +00:00
14 lines
193 B
Crystal
14 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
|