mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
12 lines
195 B
Protocol Buffer
12 lines
195 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "entity/request.proto";
|
|
import "entity/response.proto";
|
|
|
|
package grpc;
|
|
option go_package = ".;grpc";
|
|
|
|
service ModelDelegate {
|
|
rpc Do(Request) returns (Response){};
|
|
}
|