Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Cardano.CLI.Run
Description
Dispatch for running all the CLI commands
Synopsis
- data ClientCommand
- = ByronCommand ByronCommand
- | ShelleyCommand ShelleyCommand
- | DeprecatedShelleySubcommand ShelleyCommand
- | ∀ a. Help ParserPrefs (ParserInfo a)
- | DisplayVersion
- data ClientCommandErrors
- renderClientCommandError ∷ ClientCommandErrors → Text
- runClientCommand ∷ ClientCommand → ExceptT ClientCommandErrors IO ()
Documentation
data ClientCommand Source #
Sub-commands of 'cardano-cli'.
Constructors
ByronCommand ByronCommand | Byron Related Commands |
ShelleyCommand ShelleyCommand | Shelley Related Commands |
DeprecatedShelleySubcommand ShelleyCommand | Shelley-related commands that have been parsed under the now-deprecated "shelley" subcommand. |
∀ a. Help ParserPrefs (ParserInfo a) | |
DisplayVersion |
data ClientCommandErrors Source #