json/types.go

13 lines
242 B
Go
Raw Normal View History

2022-12-27 02:37:02 +03:00
package json
2022-11-16 05:11:19 +03:00
type NodeType string
const (
2022-11-21 04:31:56 +03:00
StringType NodeType = "string"
NumberType NodeType = "number"
ObjectType NodeType = "object"
ArrayType NodeType = "array"
BooleanType NodeType = "boolean"
NullType NodeType = "null"
2022-11-16 05:11:19 +03:00
)