Skip to content

Instantly share code, notes, and snippets.

@richardhyatt
Last active October 20, 2017 18:51
Show Gist options
  • Select an option

  • Save richardhyatt/e22ab8f7569493d7441da979e82c1563 to your computer and use it in GitHub Desktop.

Select an option

Save richardhyatt/e22ab8f7569493d7441da979e82c1563 to your computer and use it in GitHub Desktop.
trivial handler using vandium
'use strict';
require( 'vandium' );
exports.handler = function( event, context, callback ) {
console.log( 'ABC = ', proceass.env.ABC );
callback( null, 'ok' );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment