Module Spec.Rounds

module Round = Round
type ('round, 'initial) t = {
  1. round : 'round option;
  2. initial : 'initial;
}
module type S = sig ... end
module Make (R : Round.S) : S with module Round = R