__main__.py 288 B

123456789101112
  1. """Entry point for running dulwich as a module.
  2. This module allows dulwich to be run as a Python module using the -m flag:
  3. python -m dulwich
  4. It serves as the main entry point for the dulwich command-line interface.
  5. """
  6. from . import cli
  7. if __name__ == "__main__":
  8. cli._main()