Reviewed-on: #1 Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com> Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
14 lines
222 B
Python
14 lines
222 B
Python
"""
|
|
Main entry point for the doc-forge CLI.
|
|
"""
|
|
from docforge.cli.commands import cli
|
|
|
|
def main() -> None:
|
|
"""
|
|
CLI Entry point. Boots the click application.
|
|
"""
|
|
cli()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|