mirror of https://github.com/usbharu/Hideout.git
18 lines
347 B
Protocol Buffer
18 lines
347 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import "uuid.proto";
|
||
|
|
||
|
option java_package = "dev.usbharu.owl";
|
||
|
|
||
|
message SubscribeTaskRequest {
|
||
|
string name = 1;
|
||
|
string hostname = 2;
|
||
|
repeated string tasks = 3;;
|
||
|
}
|
||
|
|
||
|
message SubscribeTaskResponse {
|
||
|
UUID id = 1;
|
||
|
}
|
||
|
|
||
|
service SubscribeTaskService {
|
||
|
rpc SubscribeTask (SubscribeTaskRequest) returns (SubscribeTaskResponse);
|
||
|
}
|