Files
doc-forge/docforge/cli/__init__.py
Vishesh 'ironeagle' Bangotra b6e5114532
All checks were successful
continuous-integration/drone/tag Build is passing
added docs strings
2026-01-21 01:00:12 +05:30

21 lines
491 B
Python

"""
# CLI Layer
The `docforge.cli` package provides the command-line interface for interacting
with doc-forge.
## Available Commands
- **tree**: Visualize the introspected project structure.
- **generate**: Create Markdown source files from Python code.
- **mkdocs**: Generate the primary `mkdocs.yml` configuration.
- **build**: Build the final documentation site.
- **serve**: Launch a local development server with live-reloading.
"""
from .main import main
__all__ = [
"main"
]