go-html/go.mod
Virgil 8bf49c8935
Some checks are pending
Security Scan / security (push) Waiting to run
Test / test (push) Waiting to run
fix(html): preserve nested layout paths through wrappers
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-03 16:39:34 +00:00

26 lines
715 B
Modula-2

module dappco.re/go/core/html
go 1.26.0
require (
dappco.re/go/core/i18n v0.1.8
dappco.re/go/core/io v0.2.0
dappco.re/go/core/log v0.1.0
github.com/stretchr/testify v1.11.1
)
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace (
dappco.re/go/core => ./deps/core
dappco.re/go/core/i18n => ./deps/go-i18n
dappco.re/go/core/io => ./deps/go-io
dappco.re/go/core/log => ./deps/go-log
)