UNPKG

emvc-generator

Version:

emvc application generator

15 lines (11 loc) 307 B
var Controller = require('emvc').Controller; var inherits = require('util').inherits; function PagesController() { Controller.call(this); } inherits(PagesController, Controller); PagesController.prototype.main = function() { this.title = 'emvc'; this.render(); }; module.exports = PagesController;