index.js 226 B

123456789
  1. var Index = {
  2. index:function(res,req,args){
  3. var a = new VIEW('/index.html');
  4. res.writeHead(200, {'Content-Type': 'text/html'});
  5. res.write(a.html);
  6. res.end();
  7. }
  8. };
  9. module.exports = Index;