mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-07 12:37:48 +00:00
17 lines
305 B
Go
17 lines
305 B
Go
package nodes
|
|
|
|
import "gopkg.in/yaml.v3"
|
|
|
|
// NodeEntry represents a single node used by NodeBuilder.
|
|
type NodeEntry struct {
|
|
Tag string
|
|
Key string
|
|
Value any
|
|
StringValue string
|
|
Line int
|
|
KeyStyle yaml.Style
|
|
// ValueStyle yaml.Style
|
|
RenderZero bool
|
|
LowValue any
|
|
}
|