mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-17 21:34:56 +00:00
add function comments
This commit is contained in:
@@ -45,7 +45,7 @@ message DeployResponse {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message ListRequest {
|
message ListRequest {
|
||||||
// optional
|
// optional project name
|
||||||
string project = 1;
|
string project = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -65,14 +65,17 @@ message Func {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message ListResponse {
|
message ListResponse {
|
||||||
|
// List of functions deployed
|
||||||
repeated Func functions = 1;
|
repeated Func functions = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message DeleteRequest {
|
message DeleteRequest {
|
||||||
|
// Optional project name
|
||||||
string project = 1;
|
string project = 1;
|
||||||
|
// The name of the function
|
||||||
string name = 2;
|
string name = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message DeleteResponse {
|
message DeleteResponse {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user