transcoder.api 225 B

12345678910111213
  1. type Request {
  2. Path string `form:"path"`
  3. }
  4. type Response {
  5. Path string `json:"path"`
  6. Message string `json:"message"`
  7. }
  8. service transcoder {
  9. @handler TranscoderHandler
  10. get /v1/transcoder(Request) returns (Response)
  11. }