oasis-server/lib/utils.ml

6 lines
189 B
OCaml
Raw Normal View History

2023-08-13 22:44:10 -06:00
let html_page_route path =
let ic = open_in ("html" ^ path ^ "index.html") in
let lines = In_channel.input_all ic in
In_channel.close ic;
Dream.get path (fun _ -> Dream.html lines)