dream/example/f-static/static.ml
2021-03-25 01:59:19 +03:00

15 lines
246 B
OCaml

let () =
Dream.run
@@ Dream.logger
@@ Dream.router [
Dream.get "/"
(fun _ ->
Dream.respond "Good morning, world!");
Dream.get "/static/*" (Dream.static ".")
]
@@ fun _ ->
Dream.respond ~status:`Not_Found ""