waigo
Version:
Node.js ES6 framework for reactive, data-driven apps and APIs (Koa, RethinkDB)
16 lines (13 loc) • 344 B
JavaScript
/**
* Create a cookie session store.
*
* @param App {Object} App.
* @param storeConfig {Object} config.
*
* @return {Object} Storage object.
*/
exports.create = function(App, storeConfig) {
// koa-session-store automatically falls back to using the session cookie itself if no store object is given
return null;
};
;