mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
/**
|
|
* controller
|
|
* @return
|
|
*/
|
|
module.exports = Controller(function(){
|
|
"use strict";
|
|
return {
|
|
indexAction: function(){
|
|
//render View/Home/index_index.html file
|
|
this.display();
|
|
}
|
|
};
|
|
}); |