9 lines
173 B
Python
9 lines
173 B
Python
""" python3 -m docgen <command> [args] — see cli/__init__.py for the commands."""
|
|
|
|
import sys
|
|
|
|
from .cli import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|