mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-06 22:23:39 +01:00
16 lines
376 B
OCaml
16 lines
376 B
OCaml
open Core.Std
|
|
|
|
|
|
let command =
|
|
Command.group ~summary:"QMC=Chem command" [
|
|
"debug" , Qmcchem_debug.command ;
|
|
"edit" , Qmcchem_edit.command ;
|
|
"md5" , Qmcchem_md5.command ;
|
|
"result", Qmcchem_result.command ;
|
|
"run" , Qmcchem_run.command ;
|
|
"stop" , Qmcchem_stop.command ;
|
|
]
|
|
|
|
let () =
|
|
Command.run command
|