hubvault.entry
Entry points for the hubvault.entry package.
This package exposes the command-line interface (CLI) entry point for the
hubvault application. The primary public object is the CLI group imported
as hubvaultcli, which can be used to invoke CLI commands programmatically
or to register it with external tooling.
The package contains the following main components:
hubvaultcli- CLI group object for thehubvaultcommand-line tool
Example:
>>> from hubvault.entry import hubvaultcli
>>> # The object is typically used by CLI frameworks.
>>> # Actual invocation is usually handled by the CLI framework itself.
Note
The underlying CLI implementation is defined in hubvault.entry.cli.
This package module merely re-exports the CLI group for convenience.
__all__
- hubvault.entry.__all__ = ['hubvaultcli']
Built-in mutable sequence.
If no argument is given, the constructor creates a new empty list. The argument must be an iterable if specified.