...

Text file src/cuelang.org/go/encoding/openapi/testdata/protobuf.cue

Documentation: cuelang.org/go/encoding/openapi/testdata

     1// Note: This example originally derived from a CUE file converted from protobuf.
     2
     3#HTTPRoute: {
     4	route: [...#HTTPRouteDestination]
     5}
     6#HTTPRouteDestination: {
     7	headers:     #Headers
     8}
     9#Headers: {
    10	request:  #HeaderOperations
    11	#HeaderOperations:  {}
    12}

View as plain text