Documentation ¶
Overview ¶
Package jsonl implements a pretty printer for JSONL format (jsonlines.org)
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Edge ¶
type Edge struct { Kind string `json:"kind"` Source string `json:"source"` Destination string `json:"destination"` }
Edge is the serializable type for graph edges
type Node ¶
type Node struct { Kind string `json:"kind"` ID string `json:"id"` // TODO: preserved for compat, remove in 0.4.0 Meta *node.Node `json:"meta"` Value interface{} `json:"value"` }
Node is the serializable type for graph nodes
Click to show internal directories.
Click to hide internal directories.