29 lines
		
	
	
		
			473 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			473 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
 | 
						|
package helloworld;
 | 
						|
 | 
						|
option go_package = "go.unistack.org/micro-tests/server/grpc/proto;helloworld";
 | 
						|
import "api/annotations.proto";
 | 
						|
 | 
						|
service Test {
 | 
						|
	rpc Call(Request) returns (Response) {
 | 
						|
    option (micro.api.http) = { post: "/api/v0/test/call/TEST"; body: "*"; };
 | 
						|
	};
 | 
						|
}
 | 
						|
 | 
						|
message Request {
 | 
						|
  string uuid = 1;
 | 
						|
	string name = 2;
 | 
						|
 | 
						|
	Broken broken = 4;
 | 
						|
};
 | 
						|
 | 
						|
message Broken {
 | 
						|
  string field = 1;
 | 
						|
};
 | 
						|
 | 
						|
message Response {
 | 
						|
	string msg = 1;
 | 
						|
Broken broken = 4;
 | 
						|
};
 |