Files
kami-parse-server/spec/MockAdapter.js
Florent Vilmart d504681589 Improves Controller and Adapter relationship
- Controllers that have adapters are AdaptableControllers
- AdaptableController is responsible to instantiate the proper adapter if needed (string, function or BaseAdapter)
- BaseAdapter is the base class for adapters, allows skipping when passed directly to the controller
2016-02-21 17:04:34 -05:00

4 lines
65 B
JavaScript

module.exports = function(options) {
this.options = options;
}