2016-10-16 23:57:56 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-10-16 23:57:56 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-02-14 14:01:23 +04:00
|
|
|
let select_commands _ _ =
|
|
|
|
return
|
|
|
|
(List.flatten
|
2018-02-14 17:15:54 +04:00
|
|
|
[ Client_report_commands.commands () ;
|
|
|
|
Client_admin_commands.commands () ;
|
2018-02-14 14:01:23 +04:00
|
|
|
Client_network_commands.commands () ;
|
|
|
|
Client_generic_rpcs.commands ])
|
|
|
|
|
|
|
|
let () = Client_main_run.run select_commands
|