mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
15 lines
222 B
JavaScript
15 lines
222 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* base adapter
|
|
* @return {Class} []
|
|
*/
|
|
module.exports = think.adapter(think.adapter.base, {
|
|
/**
|
|
* init
|
|
* @return {} []
|
|
*/
|
|
init: function(){
|
|
this.super('init', arguments);
|
|
}
|
|
}); |