Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
'use strict';
// =================================================================================
// App Configuration
// =================================================================================
const app = require('jovo-framework').Jovo;
exports.handler = function(event, context, callback) {
app.handleRequest(event, callback, handlers);
app.execute();
};
// =================================================================================
// App Logic
// =================================================================================
const handlers = {
'LAUNCH': function() {
app.toIntent('HelloWorldIntent');
},