mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
17 lines
383 B
JavaScript
17 lines
383 B
JavaScript
/**
|
|
* JAWS "App" Library
|
|
* - Re-usable, modular code that you can require in both your server and lambda functions
|
|
*/
|
|
|
|
|
|
// Models
|
|
// - Loading order is important
|
|
module.exports.models = {
|
|
AWS: require('./models/model_aws'),
|
|
User: require('./models/model_user')
|
|
};
|
|
|
|
// Controllers
|
|
module.exports.controllers = {
|
|
Incoming: require('./controllers/controller_incoming')
|
|
}; |