mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
module.exports = Controller({
|
|
testAction: function(){
|
|
return 'test:test'
|
|
},
|
|
otherAction: function(name, value){
|
|
return JSON.stringify({name: name, value: value})
|
|
}
|
|
}) |