blob: b215cff5aa2ca408d3f5db7c1bfd3781fa3f9f0a [file] [log] [blame]
/**
*
* main() will be invoked when you Run This Action
*
* @param Cloud Functions actions accept a single parameter, which must be a JSON object.
*
* @return The output of this action, which must be a JSON object.
*
*/
function main(params) {
return { message: 'Hello World' };
}