ahmetkca 093fc689d7 Refactor(Github Repo): Update init file
- Remove imports of base, github_client and utils
- Add imports of GithubRepositoryReader and GithubClient
- Update __all__ to include the new imports
2023-02-13 01:18:12 -05:00

7 lines
153 B
Python

"""Init file."""
from .base import GithubRepositoryReader
from .github_client import GithubClient
__all__ = ["GithubRepositoryReader", "GithubClient"]