by welefen

This commit is contained in:
welefen 2013-10-17 18:52:54 +08:00
parent fe82ceeae8
commit 19270f04df

View File

@ -0,0 +1,12 @@
var action = Action(function(){
return {
init: function(){
},
test: function(test, test2){
console.log("test value: " + test + ","+test2)
}
}
});
module.exports = action;