fix(go.mod): correct replace path ../core to ../go

The framework lives at ../go in the canonical workspace layout.
The ../core path was a symlink-specific workaround that broke
the CLI go.work build.

Co-Authored-By: Charon <charon@lethean.io>
This commit is contained in:
Claude 2026-02-20 15:29:53 +00:00
parent 9d433f6b43
commit 802a054ffe
No known key found for this signature in database
GPG key ID: AF404715446AEB41
2 changed files with 2 additions and 4 deletions

View file

@ -15,9 +15,7 @@ go vet ./... # Static analysis
| Module | Local Path | Notes |
|--------|-----------|-------|
| `forge.lthn.ai/core/go` | `../core` | Framework (core.E, io.Medium, config, i18n, log) |
**Do NOT change the replace directive path.**
| `forge.lthn.ai/core/go` | `../go` | Framework (core.E, io.Medium, config, i18n, log) |
## Key Interfaces

2
go.mod
View file

@ -59,4 +59,4 @@ require (
golang.org/x/term v0.40.0 // indirect
)
replace forge.lthn.ai/core/go => ../core
replace forge.lthn.ai/core/go => ../go