diff options
| author | Paul Buetow <paul@buetow.org> | 2025-08-17 18:52:51 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-08-17 18:52:51 +0300 |
| commit | 454451105ad3522d2ac3d22136eedee4a4d034af (patch) | |
| tree | aa4b5723809c4d45bfc9094a38c01c6415582f9c /internal/version.go | |
| parent | 498923e77c201ca90dc35c7934f4f7f1c9c3ccd2 (diff) | |
cli+lsp: refactor main packages into internal runners; add tests
- Move CLI logic to internal/hexaicli with Run/RunWithClient
- Move LSP logic to internal/hexailsp with Run/RunWithFactory
- Extract helpers; keep behavior identical for both binaries
- Add unit tests for hexaicli (input parsing, messages, streaming) and
hexailsp (factory wiring, client creation, logging settings)
- Add top-of-file summaries and 'Not yet reviewed by a human' comments to all Go files
- Update README with internal package docs
Diffstat (limited to 'internal/version.go')
| -rw-r--r-- | internal/version.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/version.go b/internal/version.go index 0894830..a6b1527 100644 --- a/internal/version.go +++ b/internal/version.go @@ -1,3 +1,5 @@ +// Summary: Hexai semantic version identifier used by CLI and LSP binaries. +// Not yet reviewed by a human package internal const Version = "0.1.0" |
