blob: bba752745bf0f8cbe2886294d2370b12cd144643 (
plain) (
tree)
|
|
package model
type NodeType string
const (
StringType NodeType = "string"
NumberType NodeType = "number"
ObjectType NodeType = "object"
ArrayType NodeType = "array"
BooleanType NodeType = "boolean"
NullType NodeType = "null"
)
type NodeObjectValue map[string]Node
func (n NodeObjectValue) Set(k string, v any) {
n[k] = NewNode(v)
}
|