Skip to content

Commit

Permalink
feat(middleware): add project skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyke authored and Peter Marton committed Jul 27, 2015
1 parent d036436 commit e50c0ce
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./src');
5 changes: 5 additions & 0 deletions src/express/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function express() {

}

module.exports = express;
5 changes: 5 additions & 0 deletions src/hapi/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function hapi() {

}

module.exports = hapi;
7 changes: 7 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var koa = require('./koa');
var hapi = require('./hapi');
var express = require('./express');

module.exports.koa = koa;
module.exports.hapi = hapi;
module.exports.express = express;
5 changes: 5 additions & 0 deletions src/koa/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function koa() {

}

module.exports = koa;

0 comments on commit e50c0ce

Please sign in to comment.