mte/unikernel/duniverse/dune_/bin/ocaml/ocaml_cmd.ml

17 lines
303 B
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
open Import
let info = Cmd.info "ocaml" ~doc:"Command group related to OCaml."
let group =
Cmdliner.Cmd.group
info
[ Utop.command
; Ocaml_merlin.command
; Ocaml_merlin.Dump_dot_merlin.command
; Top.command
; Top.module_command
; Ocaml_merlin.group
; Doc.cmd
]
;;