UNPKG

waigo

Version:

Node.js ES6 framework for reactive, data-driven apps and APIs (Koa, RethinkDB)

18 lines (12 loc) 232 B
"use strict"; /** * Shutdown database connection. * * @param {Object} app The application. */ module.exports = function*(App) { App.logger.debug('Shutting down ACL'); if (App.acl) { yield App.acl.shutdown(); } };