mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
15 lines
228 B
Protocol Buffer
15 lines
228 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "entity/response_code.proto";
|
|
|
|
package grpc;
|
|
option go_package = ".;grpc";
|
|
|
|
message Response {
|
|
ResponseCode code = 1;
|
|
string message = 2;
|
|
bytes data = 3;
|
|
string error = 4;
|
|
int64 total = 5;
|
|
}
|