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