mentorenwahl/docker/backend/src/backend/worker/service.cr
Dominic Grimm 0e742965cc
All checks were successful
continuous-integration/drone/push Build is passing
Added frontend
2022-01-29 16:40:39 +01:00

10 lines
171 B
Crystal

module Backend
module Worker
SERVICE = ->do
Log.info { "Starting worker service..." }
run
Log.info { "Worker service stopped." }
end
end
end