2015-08-07 14:39:09 +08:00

12 lines
192 B
JavaScript

'use strict';
module.exports = think.controller({
/**
* index action
* @return {Promise} []
*/
indexAction: function(self){
//auto render template
self.display();
}
});