Last active
October 20, 2017 18:51
-
-
Save richardhyatt/e22ab8f7569493d7441da979e82c1563 to your computer and use it in GitHub Desktop.
trivial handler using vandium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '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