scratch_oxygen / server.jl
=
up stuff
75cd75b
raw
history blame
182 Bytes
using Oxygen
using HTTP
#import OstreaCultura as OC
@get "/greet" function(req::HTTP.Request)
return "hello world!"
end
# start the web server
serve(host="0.0.0.0", port=8000)