welsonjs/app/assets/protos/WelsonJS.GrpcService.proto
Namhyeon, Go 5d9fb71753
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Replace GRPC proto file and delete the related file
2024-08-19 00:35:23 +09:00

15 lines
271 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "WelsonJS.GrpcService";
service MessageController {
rpc SendMessageStream (MessageRequest) returns (stream MessageReply);
}
message MessageRequest {
string clientId = 1;
}
message MessageReply {
string message = 1;
}