mentorenwahl/docker/backend/src/backend/worker/jobs/hello_world.cr
Dominic Grimm 5bc10f8aaf
Some checks failed
continuous-integration/drone/push Build is failing
Added worker
2022-01-23 09:12:57 +01:00

14 lines
222 B
Crystal

module Backend
module Worker
module Jobs
class HelloWorldJob < Mosquito::PeriodicJob
run_every 30.seconds
def perform : Nil
log "Hello World!"
end
end
end
end
end