Rate this page:
The function
module is where the app's behavior is defined. Other modules specify the function module
that defines the actions to take.
Property | Type | Required | Description |
---|---|---|---|
key | string | Yes | A key for the module, which other modules can refer to. Must be unique within the manifest and have a maximum of 23 characters. Regex: |
handler | string | Yes | A pointer to the function responsible for handling invocations. Expected format: For example, Regex: |
providers | Providers | A list of the providers required by the function. |
1 2modules: function: - key: main handler: index.run
Property | Type | Required | Description |
---|---|---|---|
auth | List<string> | Yes | A list of keys referencing authentication providers. |
1 2function: - key: google-macro handler: index.google_macro providers: auth: - google - key: dropbox-macro handler: index.dropbox_macro providers: auth: - dropbox
Rate this page: