blob: d9bf7ddc732e4f31f6aba5788a65384859d6a5f4 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more contributor
// license agreements; and to You under the Apache License, Version 2.0.
var openwhisk = require('openwhisk');
function main(params) {
console.log(JSON.stringify(params));
var name = params.messages[0].key;
var ow = openwhisk({ignore_certs: true});
return ow.triggers.create({name: name});
}