mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 12:37:49 +00:00
3.0 and 2.0 do not work, there are multiple versions and anything with a period in it sucks from my point of view, v2 and v3 feel much better from a DX perspective.
12 lines
219 B
Go
12 lines
219 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]
|
|
}
|