package datakit-client

  1. Overview
  2. Docs

DataKit client API

type stat = {
  1. kind : [ `File | `Dir | `Link | `Exec ];
  2. size : int64;
}
type status_state = [
  1. | `Pending
  2. | `Success
  3. | `Error
  4. | `Failure
]
type 'a diff = [
  1. | `Added of 'a
  2. | `Removed of 'a
  3. | `Updated of 'a
]

The type for diffs.

type value = [
  1. | `File of Cstruct.t
  2. | `Dir of string list
]

The type for values.

module Path : sig ... end

Locate files and directories within a DataKit tree.

module type READABLE_TREE = sig ... end
module type S = sig ... end