Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-10-11 11:44:41 +00:00
parent c436880097
commit 05b5bc00dc
4 changed files with 12 additions and 6 deletions

View File

@@ -53,7 +53,9 @@ type CallResponse struct {
}
type DeleteRequest struct {
Name string `json:"name"`
// The name of the function
Name string `json:"name"`
// Optional project name
Project string `json:"project"`
}
@@ -94,10 +96,11 @@ type Func struct {
}
type ListRequest struct {
// optional
// optional project name
Project string `json:"project"`
}
type ListResponse struct {
// List of functions deployed
Functions []Func `json:"functions"`
}