web/go.mod

32 lines
955 B
Modula-2
Raw Normal View History

2025-03-28 08:49:33 +01:00
module netgarden.dev/maf/web
2025-03-27 09:19:08 +01:00
go 1.24.1
2025-03-28 08:49:33 +01:00
replace (
netgarden.dev/maf/maf => ../../maf/maf
netgarden.dev/maf/mergefs => ../../maf/mergefs
)
2025-03-27 09:19:08 +01:00
require (
github.com/flosch/pongo2/v6 v6.0.0
github.com/labstack/echo/v4 v4.13.3
2025-03-28 08:49:33 +01:00
netgarden.dev/maf/maf v0.0.0-20250327102624-f25d54ddf786
netgarden.dev/maf/mergefs v0.0.0-20250327100833-ed0d8fb30bd1
2025-03-27 09:19:08 +01:00
)
require (
2025-03-28 08:49:33 +01:00
github.com/elliotchance/orderedmap v1.8.0 // indirect
2025-03-27 09:19:08 +01:00
github.com/kelseyhightower/envconfig v1.4.0 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)