On a quest for agency in Bellairs

Add one comment :-)

Changed files
+2
mvp
ocaml
server
+2
mvp/ocaml/server/impl.ml
···
type file = { content : string; size : int64 }
type dir = (string, file) Hashtbl.t
type entry = { name : string; file : file }
···
+
(* TODO: put the real implementation here -- for now it's just an in-memory database *)
+
type file = { content : string; size : int64 }
type dir = (string, file) Hashtbl.t
type entry = { name : string; file : file }