1 | var Application = require('./application');
|
2 |
|
3 | exports = module.exports = alajs
|
4 |
|
5 |
|
6 |
|
7 | function alajs(options){
|
8 | var application = new Application();
|
9 | application.optionsHandler(options);
|
10 | return application;
|
11 | }
|
12 |
|
13 |
|
14 |
|
15 |
|
16 | exports.version = 0.1
|
17 | /*
|
18 |
|
19 | alajs.prototype.__proto__.__proto__.__proto__
|
20 | koa koa.prototype Emitter.prototype
|
21 | app.__proto__.__proto__.__proto__.__proto__
|
22 | koa koa.prototype Emitter.prototype
|
23 | */
|
24 |
|
25 |
|
26 |
|
27 |
|