You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like that you're splitting your functions into files, but if you have lots of functions used in another file you'll have to require each function and that's lots of lines.
You could add an index.js file in your folder and export from it and only require this file in your handler.
I like that you're splitting your functions into files, but if you have lots of functions used in another file you'll have to require each function and that's lots of lines.
You could add an
index.js
file in your folder and export from it and only require this file in your handler.index.js
will be something like this:The text was updated successfully, but these errors were encountered: