Skip to content

Add gRPC middleware support #58

@makarski

Description

@makarski
syntax = "proto3";
package transform;

service Transform {
  rpc Transform (TransformRequest) returns (TransformResponse);
}

message TransformRequest {
  bytes payload = 1;
  string encoding = 2;
  string method = 3;
  map<string, string> attributes = 4;
}

message TransformResponse {
  bytes payload = 1;
  map<string, string> attributes = 2;
  bool success = 3;
  string error = 4;
}

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions