kodflow/kitsune

View on GitHub
src/internal/core/server/transport/proto/request.proto

Summary

Maintainability
Test Coverage
syntax = "proto3";

package generated;
import "src/internal/core/server/transport/proto/header.proto";
option go_package = "src/internal/core/server/transport/proto/generated";


message Request {
  string id = 1;
  string pid = 2;
  string method = 3;
  string endpoint = 4;
  optional bytes body = 5;
  map<string, Header> headers = 6;
}