fix: add transitive replace for go-inference
go-i18n imports go-inference, needs local replace. Note: go-i18n has API mismatch (Classify method) — root package fails to build. Codegen and WASM sub-packages pass. Co-Authored-By: Charon <developers@lethean.io>
This commit is contained in:
parent
ab7ab92920
commit
04067438d9
1 changed files with 3 additions and 0 deletions
3
go.mod
3
go.mod
|
|
@ -4,12 +4,15 @@ go 1.25.5
|
|||
|
||||
replace forge.lthn.ai/core/go-i18n => ../go-i18n
|
||||
|
||||
replace forge.lthn.ai/core/go-inference => ../go-inference
|
||||
|
||||
require (
|
||||
forge.lthn.ai/core/go-i18n v0.0.0-00010101000000-000000000000
|
||||
github.com/stretchr/testify v1.11.1
|
||||
)
|
||||
|
||||
require (
|
||||
forge.lthn.ai/core/go-inference v0.0.0-00010101000000-000000000000 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
golang.org/x/text v0.33.0 // indirect
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue