Files
local-ai-commit-reviewer/src/__init__.py
7000pctAUTO 669ebad65c
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
Initial upload: Local AI Commit Reviewer CLI with CI/CD workflow
2026-02-05 06:34:15 +00:00

15 lines
209 B
Python

from . import cli, config, core, formatters, git, hooks, llm, utils
__version__ = "0.1.0"
__all__ = [
"cli",
"config",
"core",
"formatters",
"git",
"hooks",
"llm",
"utils",
]