20 lines
944 B
OCaml
20 lines
944 B
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
let select_commands _ _ =
|
|
return
|
|
(List.flatten
|
|
[ Client_report_commands.commands () ;
|
|
Client_admin_commands.commands () ;
|
|
Client_network_commands.commands () ;
|
|
Client_protocols_commands.commands () ;
|
|
Client_rpc_commands.commands ])
|
|
|
|
let () = Client_main_run.run select_commands
|