mentorenwahl/docker/backend/src/backend/api/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
162 B
Crystal

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