scratch_oxygen / server.jl
=
dp
6208f87
raw
history blame
307 Bytes
using Oxygen
using HTTP
#import OstreaCultura as OC
@get "/greet" function(req::HTTP.Request)
return "hello world!"
end
# Print out some HTML
@get "/html" function(req::HTTP.Request)
return HTML("<h1>Hello, World!</h1>")
end
# start the web server
serve(host="0.0.0.0", port=8000, docs_path="/")