mentorenwahl/docker/backend/src/backend/api/run.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

12 lines
128 B
Crystal

require "http/server"
module Backend
module API
extend self
def run : Nil
WebServer.new.run
end
end
end