naming validation

This commit is contained in:
Asim Aslam
2021-12-01 15:37:54 +00:00
parent 0efaee0958
commit 52c42afd3a
3 changed files with 34 additions and 23 deletions

View File

@@ -28,12 +28,12 @@ message CallResponse {
// Deploy a group of functions
message DeployRequest {
// github url to repo
string repo = 1;
// optional subfolder path
string subfolder = 2;
// function name
string name = 3;
string name = 1;
// github url to repo
string repo = 2;
// optional subfolder path
string subfolder = 3;
// entry point, ie. handler name in the source code
// if not provided, defaults to the name parameter
string entrypoint = 4;