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