add function comments

This commit is contained in:
Asim Aslam
2021-10-11 12:40:40 +01:00
parent 1da7a76db0
commit 0c977a95fc

View File

@@ -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 {
} }