mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-31 04:53:01 +02:00
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>
18 lines
517 B
AMPL
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
|