mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-07 04:20:14 +00:00
18 lines
246 B
Go
18 lines
246 B
Go
package low
|
|
|
|
import "gopkg.in/yaml.v3"
|
|
|
|
type HasNode interface {
|
|
GetNode() *yaml.Node
|
|
}
|
|
|
|
type NodeReference[T comparable] struct {
|
|
Value T
|
|
Node *yaml.Node
|
|
}
|
|
|
|
type ObjectReference struct {
|
|
Value interface{}
|
|
Node *yaml.Node
|
|
}
|