web/go.mod

31 lines
950 B
Modula-2
Raw Normal View History

2025-03-27 11:07:09 +01:00
module netgarden.dev/maf/webserver
2025-03-27 09:19:08 +01:00
go 1.24.1
2025-03-27 11:41:50 +01:00
replace netgarden.dev/maf/maf => ../maf
2025-03-27 09:19:08 +01:00
2025-03-27 11:07:09 +01:00
replace netgarden.dev/maf/mergefs => ../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-27 11:41:50 +01:00
netgarden.dev/maf/maf v0.0.0-00010101000000-000000000000
2025-03-27 11:07:09 +01:00
netgarden.dev/maf/mergefs v0.0.0-00010101000000-000000000000
2025-03-27 09:19:08 +01:00
)
require (
github.com/elliotchance/orderedmap v1.6.0 // indirect
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
)