Files
infix/src/webui/go.mod
T
Joachim Wiberg d9611c48a9 webui: rename Go module to infix/webui
The webui Go code now lives in the infix source tree rather than being
imported as an external module.  Switch the module path to match that
reality so the imports read coherently with the rest of the codebase.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2026-06-15 19:45:20 +02:00

18 lines
517 B
AMPL

module infix/webui
go 1.22.0
toolchain go1.22.2
require (
github.com/google/go-cmp v0.7.0 // indirect
github.com/openconfig/goyang v1.6.3 // indirect
github.com/pborman/getopt v1.1.0 // indirect
)
// Local fork of goyang with YANG 1.1 fixes:
// - Uses.Augment: *Augment []*Augment (multiple augments per uses)
// - Value: add Reference field (when { reference "..."; })
// - Input/Output: add Must field (must statements in rpc input/output)
replace github.com/openconfig/goyang => ./internal/goyang