Files
infix/src/webui/go.mod
T
Joachim Wiberg 6e84a75550 webui: advanced configure using a yang tree
Navigating interfaces now work, and the tree follows the accordion style
like the rest of the UI.

Also, some updates to the curated pages: online help, lists of leafrefs
instead of hard-coded list options.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2026-06-14 22:07:38 +02:00

18 lines
532 B
AMPL

module github.com/kernelkit/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