go-html/go.mod
Claude 04067438d9
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>
2026-02-20 00:49:10 +00:00

20 lines
534 B
Modula-2

module forge.lthn.ai/core/go-html
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
gopkg.in/yaml.v3 v3.0.1 // indirect
)