mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-10 04:20:24 +00:00
13 lines
223 B
Go
13 lines
223 B
Go
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type Callback struct {
|
|
Node *yaml.Node
|
|
Expression map[string]Path
|
|
Extensions map[string]low.ObjectReference
|
|
}
|