extractors.py 341 B

123456789101112131415
  1. __package__ = 'abx_plugin_git'
  2. # from pathlib import Path
  3. # from .binaries import GIT_BINARY
  4. # class GitExtractor(BaseExtractor):
  5. # name: ExtractorName = 'git'
  6. # binary: str = GIT_BINARY.name
  7. # def get_output_path(self, snapshot) -> Path | None:
  8. # return snapshot.as_link() / 'git'
  9. # GIT_EXTRACTOR = GitExtractor()