Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-10-11 13:01:57 +00:00
parent 1d3ba793f3
commit 6ada3cd5b5
7 changed files with 7 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ type FunctionService struct {
client *client.Client
}
// Call a function
// Call a function by name
func (t *FunctionService) Call(request *CallRequest) (*CallResponse, error) {
rsp := &CallResponse{}
return rsp, t.client.Call("function", "Call", request, rsp)

View File

@@ -6,7 +6,7 @@ export class FunctionService {
constructor(token: string) {
this.client = new m3o.Client({ token: token });
}
// Call a function
// Call a function by name
call(request: CallRequest): Promise<CallResponse> {
return this.client.call(
"function",