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:
parent
9d433f6b43
commit
802a054ffe
2 changed files with 2 additions and 4 deletions
|
|
@ -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
2
go.mod
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue