hubvault.entry.content

Content-oriented CLI commands for hubvault.entry.

This module exposes tree listing, detached download, snapshot export, and verification commands on top of the public hubvault API.

The module contains:

register_content_commands

hubvault.entry.content.register_content_commands(group: Group) Group[source]

Register content and verification commands on a Click command group.

Parameters:

group (click.Group) – Click group receiving the registered commands

Returns:

The same Click group for decorator chaining

Return type:

click.Group

Example:

>>> import click
>>> group = click.Group()
>>> register_content_commands(group) is group
True