15 lines
292 B
Python
15 lines
292 B
Python
"""
|
|
Main entry point for the doc-forge CLI. This module delegates all command
|
|
execution to docforge.cli.commands.
|
|
"""
|
|
from docforge.cli.commands import cli
|
|
|
|
def main() -> None:
|
|
"""
|
|
CLI Entry point. Boots the click application.
|
|
"""
|
|
cli()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|