mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-10 04:20:24 +00:00
Shaping out the design as I go, what makes sence, what feels right, what do we need, how do we want to use it and how to we want to search it etc.
12 lines
231 B
Go
12 lines
231 B
Go
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
)
|
|
|
|
type ServerVariable struct {
|
|
Enum []low.NodeReference[string]
|
|
Default low.NodeReference[string]
|
|
Description low.NodeReference[string]
|
|
}
|