mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-26 17:49:15 +01:00
11 lines
201 B
Protocol Buffer
11 lines
201 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "entity/stream_message.proto";
|
|
|
|
package grpc;
|
|
option go_package = ".;grpc";
|
|
|
|
service MessageService {
|
|
rpc Connect(stream StreamMessage) returns (stream StreamMessage){};
|
|
}
|