this repo has no description
1module type S = sig
2 type t
3 (** A single history entry *)
4
5 include Irmin.Contents.S with type t := t
6end
7
8type 'entry t =
9 | Store :
10 ((module Irmin.S
11 with type t = 'a
12 and type Schema.Branch.t = string
13 and type Schema.Contents.t = 'entry
14 and type Schema.Path.t = string list
15 and type Schema.Path.step = string)
16 * 'a)
17 -> 'entry t