10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-20 20:22:07 +02:00
qmcchem/ocaml/qmcchem.ml

17 lines
419 B
OCaml
Raw Normal View History

2015-12-19 02:35:13 +01:00
open Core.Std
let command =
Command.group ~summary:"QMC=Chem command" [
"debug" , Qmcchem_debug.command ;
"edit" , Qmcchem_edit.command ;
2015-12-29 01:16:19 +01:00
"info" , Qmcchem_info.command ;
2015-12-19 02:35:13 +01:00
"md5" , Qmcchem_md5.command ;
"result", Qmcchem_result.command ;
"run" , Qmcchem_run.command ;
"stop" , Qmcchem_stop.command ;
]
let () =
Command.run command