25 lines
530 B
Python
25 lines
530 B
Python
"""
|
|
# Summary
|
|
|
|
Command-line entry point for the doc-forge CLI.
|
|
|
|
This module exposes the executable entry point that initializes the
|
|
Click command group defined in `docforge.cli.commands`.
|
|
"""
|
|
|
|
from docforge.cli.commands import cli
|
|
|
|
|
|
def main() -> None:
|
|
"""
|
|
Run the doc-forge command-line interface.
|
|
|
|
This function initializes and executes the Click CLI application.
|
|
It is used as the console entry point when invoking `doc-forge`
|
|
from the command line.
|
|
"""
|
|
cli()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |