Skip to content

Add gRPC middleware support #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
makarski opened this issue Apr 18, 2025 · 0 comments
Open

Add gRPC middleware support #58

makarski opened this issue Apr 18, 2025 · 0 comments
Labels
enhancement New feature or request middleware

Comments

@makarski
Copy link
Owner

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;
}
@makarski makarski added enhancement New feature or request middleware labels Apr 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request middleware
Projects
None yet
Development

No branches or pull requests

1 participant