diff --git a/function/proto/function.proto b/function/proto/function.proto index 7ee3e56..7e49ebf 100644 --- a/function/proto/function.proto +++ b/function/proto/function.proto @@ -45,7 +45,7 @@ message DeployResponse { } message ListRequest { - // optional + // optional project name string project = 1; } @@ -65,14 +65,17 @@ message Func { } message ListResponse { + // List of functions deployed repeated Func functions = 1; } message DeleteRequest { + // Optional project name string project = 1; + // The name of the function string name = 2; } message DeleteResponse { -} \ No newline at end of file +}