mirror of
https://github.com/aantron/dream.git
synced 2025-11-14 00:07:07 -05:00
15 lines
246 B
OCaml
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 ""
|