From 811fd1cf02d7f21fd3cfa31790ffa21efaa6cde3 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 11 Oct 2021 13:53:37 +0100 Subject: [PATCH] add comments --- function/proto/function.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/function/proto/function.proto b/function/proto/function.proto index 7e49ebf..c256e73 100644 --- a/function/proto/function.proto +++ b/function/proto/function.proto @@ -44,6 +44,7 @@ message DeployRequest { message DeployResponse { } +// List all the deployed functions message ListRequest { // optional project name string project = 1; @@ -69,6 +70,7 @@ message ListResponse { repeated Func functions = 1; } +// Delete a function by name message DeleteRequest { // Optional project name string project = 1;