ligo/src/compiler/tezos_compiler.mli

23 lines
929 B
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Hash
open Tezos_data
2016-09-08 21:13:10 +04:00
(** Low-level part of the [Updater]. *)
2016-10-25 21:00:03 +04:00
module Meta : sig
val to_file: Lwt_io.file_name -> ?hash:Protocol_hash.t -> string list -> unit
val of_file: Lwt_io.file_name -> Protocol_hash.t option * string list
end
val read_dir: Lwt_io.file_name -> Protocol.t
2016-09-08 21:13:10 +04:00
val main: unit -> unit