pub(crate) fn main()
Expand description
Rust Command-line Interface (CLI) for performing rendering and introspection tasks.
This module provides functionality for executing commands related to rendering and introspection. It parses command line arguments and dispatches the appropriate actions based on the specified command. The supported commands are Render and Describe.
- Usage
The Commands::Render
variant renders the payload file to the requested output format,
writing to a file if write
is specified.
The Commands::Describe
variant calls the describer::describe
function to provide
introspection for the given artefact and ID.
Rust Command-line Interface (CLI) for performing rendering and introspection tasks.