mirror of
https://github.com/yv1ing/ShotRDP.git
synced 2025-09-16 15:10:57 +08:00
16 lines
221 B
Protocol Buffer
16 lines
221 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "shotrdp/pb";
|
|
|
|
package pb;
|
|
|
|
message Request {
|
|
string host = 1;
|
|
}
|
|
|
|
message Response {
|
|
bytes image_bytes = 1;
|
|
}
|
|
|
|
service GetScreen {
|
|
rpc GetScreen (Request) returns (Response);
|
|
} |