codeowners_hint.py 409 B

1234567891011121314
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project.
  3. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. A commandline interface tool to inspect GitHub CODEOWNERS files
  6. """
  7. import sys
  8. import ly_test_tools.cli.codeowners_hint
  9. if __name__ == '__main__':
  10. sys.exit(ly_test_tools.cli.codeowners_hint._main())