package ez_cmdliner

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Easy interface over Cmdliner. Very similar to the Stdlib Arg module.

Three main functions: * Ezcmd.main cmd: simple command * Ezcmd.main_with_subcommands cmds: with sub-commands * Ezcmd.Arg.parse: similar to Arg.parse

Usually, you will start your code with the line:

open Ezcmd.V2

Then, use functions and constructors from either `EZCMD` module.

If you use subcommands, use the MAKE functor.

module EZCMD : sig ... end