pv2/pv2/importer/__init__.py
Louis Abel 60e210aaa6
Add module importer and git example
* Add ModuleImport class to import module repos
* Add import_git.py example of using GitImport
2023-07-07 14:37:56 -07:00

11 lines
274 B
Python

# -*-:python; coding:utf-8; -*-
# author: Louis Abel <label@rockylinux.org>
"""
Importer module
This assists packagers by taking input as srpm or git location, importing and
tagging it as appropriate.
"""
from .operation import Import, SrpmImport, GitImport, ModuleImport