cuelang.org/go@v0.10.1/encoding/openapi/testdata/protobuf.cue (about)

     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  }