17 lines
842 B
OCaml
17 lines
842 B
OCaml
![]() |
(**************************************************************************)
|
||
|
(* *)
|
||
|
(* Copyright (c) 2014 - 2016. *)
|
||
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
||
|
(* *)
|
||
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
||
|
(* *)
|
||
|
(**************************************************************************)
|
||
|
|
||
|
open Cli_entries
|
||
|
|
||
|
exception Version_not_found
|
||
|
|
||
|
val register: Protocol_hash.t -> command list -> unit
|
||
|
val commands_for_version: Protocol_hash.t -> command list
|
||
|
val get_versions: unit -> (Protocol_hash.t * (command list)) list
|