mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
var action = Action(function(){
|
|
return {
|
|
init: function(){
|
|
//action.super_.prototype.init && action.super_.prototype.init.call(this);
|
|
}
|
|
}
|
|
});
|
|
|
|
module.exports = action; |