/
drbye
/
gag
Обзор
Документация
Войти
/
drbye
/
gag
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
git/__init__.py
26 строк
640 B
Marusin Dmitry
refactor: large-scale project restructuring and module consolidation
16 июл 2026, 15:47
16 июл 2026, 15:47
64a2548
Код
Авторство
О чём код?
""" Git Module - Git repository ingestion subsystem. Provides git credential management, repo cloning, branch checkout, and code graph indexing. """ from git.credentials import GitCredentialManager, CredentialType from git.repo import GitRepoManager, GitRepo, RepoSource from git.parser import CodeParser, CodeEntity from git.pipeline import GitIngestionPipeline, GitIngestionJob from git.api import app as git_app __all__ = [ "GitCredentialManager", "CredentialType", "GitRepoManager", "GitRepo", "RepoSource", "CodeParser", "CodeEntity", "GitIngestionPipeline", "GitIngestionJob", "git_app", ]