diff --git a/src/git/__init__.py b/src/git/__init__.py new file mode 100644 index 0000000..61b2183 --- /dev/null +++ b/src/git/__init__.py @@ -0,0 +1,3 @@ +from .git import FileChange, GitRepo, get_commit_context, get_staged_changes, install_hook + +__all__ = ["FileChange", "GitRepo", "get_commit_context", "get_staged_changes", "install_hook"]