19 lines
363 B
Python
19 lines
363 B
Python
"""
|
|
# CLI Layer
|
|
|
|
The `docforge.cli` package provides the command-line interface for interacting
|
|
with doc-forge.
|
|
|
|
## Available Commands
|
|
|
|
- **build**: Build documentation (MkDocs site or MCP resources).
|
|
- **serve**: Serve documentation (MkDocs or MCP).
|
|
- **tree**: Visualize the introspected project structure.
|
|
"""
|
|
|
|
from .main import main
|
|
|
|
__all__ = [
|
|
"main"
|
|
]
|