From 3b09bb1c11591f786b56c6aa68b599b8ee6f8414 Mon Sep 17 00:00:00 2001 From: cqc Date: Thu, 6 Oct 2022 14:29:57 -0500 Subject: [PATCH] works --- dune | 2 +- human.ml | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/dune b/dune index ade5a62..0982448 100644 --- a/dune +++ b/dune @@ -14,7 +14,7 @@ js_of_ocaml-lwt digestif.ocaml irmin.mem - irmin-git.unix + irmin-git zed gg diff --git a/human.ml b/human.ml index c3d880e..6e02fca 100644 --- a/human.ml +++ b/human.ml @@ -34,12 +34,9 @@ module NVG = Graphv_webgl module Nav = struct open Lwt.Infix - - module Maker = - Irmin_git.KV (Irmin_git.Mem) (Git.Mem.Sync (Irmin_git.Mem)) - - module S = Maker.Make (Irmin.Contents.String) - module Sync = Irmin.Sync.Make (S) + module G = Irmin_git.Mem + module KV = Irmin_git.KV (G) (Git.Mem.Sync (G)) + module S = KV.Make (Irmin.Contents.String) type t = S.tree