Add CLI module
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-01-31 17:10:02 +00:00
parent 7f87de80b9
commit bfba291006

7
src/docgen/__main__.py Normal file
View File

@@ -0,0 +1,7 @@
"""Entry point for the DocGen CLI."""
import sys
from docgen.cli import app
if __name__ == "__main__":
sys.exit(app())