added poc_in_github_importer_worker

This commit is contained in:
Brendan McDevitt 2022-04-19 00:34:19 -05:00
parent 785a02b53c
commit 2f28ebae73

View file

@ -0,0 +1,10 @@
require '/data_importer/lib/importers/poc_in_github_importer.rb'
class PocInGithubImporterImporterWorker
include Faktory::Job
def perform(*args)
puts "Hello, I am #{jid} with args #{args}"
PocInGithubImporter.new.import
end
end