Skip to content

Commit fb92b1c

Browse files
committed
rename entrypoint
1 parent de19278 commit fb92b1c

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/gitingest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
""" Gitingest: A package for ingesting data from Git repositories. """
22

33
from gitingest.cloning import clone_repo
4+
from gitingest.entrypoint import ingest, ingest_async
45
from gitingest.ingestion import ingest_query
56
from gitingest.query_parsing import parse_query
6-
from gitingest.repository_ingest import ingest, ingest_async
77

88
__all__ = ["ingest_query", "clone_repo", "parse_query", "ingest", "ingest_async"]

src/gitingest/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import click
99

1010
from gitingest.config import MAX_FILE_SIZE, OUTPUT_FILE_NAME
11-
from gitingest.repository_ingest import ingest_async
11+
from gitingest.entrypoint import ingest_async
1212

1313

1414
@click.command()

0 commit comments

Comments
 (0)