()
| 239 | } |
| 240 | |
| 241 | func clientStreamingPrimitiveDSL() { |
| 242 | Service("TestService", func() { |
| 243 | Method("ClientStreamPrimitive", func() { |
| 244 | StreamingPayload(String) |
| 245 | Result(String) |
| 246 | HTTP(func() { |
| 247 | GET("/client/stream/primitive") |
| 248 | }) |
| 249 | }) |
| 250 | }) |
| 251 | } |
| 252 | |
| 253 | func clientStreamingArrayDSL() { |
| 254 | Service("TestService", func() { |