17 lines
359 B
Protocol Buffer
17 lines
359 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./codespace";
|
|
|
|
package Codespaces.Grpc.CodespaceHostService.v1;
|
|
|
|
service CodespaceHost {
|
|
rpc RebuildContainerAsync (RebuildContainerRequest) returns (RebuildContainerResponse);
|
|
}
|
|
|
|
message RebuildContainerRequest {
|
|
optional bool Incremental = 1;
|
|
}
|
|
|
|
message RebuildContainerResponse {
|
|
bool RebuildContainer = 1;
|
|
}
|