From 0c977a95fc3c5f4dcc8159e8fa94417e4d7db5cb Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 11 Oct 2021 12:40:40 +0100 Subject: [PATCH] add function comments --- function/proto/function.proto | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 +}