Working basic htmx page and endpoint, WIP static file serving and dune test running

This commit is contained in:
2024-10-31 12:10:38 -06:00
commit d18ae43731
21 changed files with 533 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
open Base
let%test_unit "rev" =
[%test_eq: int list] (List.rev [ 3; 2; 1 ]) [ 1; 2; 3 ]
let test stdout db =
let _ = stdout in
let _ = db in
Ok ()