UNPKG
dotnode
Version:
latest (0.1.22)
0.1.22
0.1.21
0.1.2
0.1.1
0.1.0
.NET-like MVC framework for Node.js
dotnode
/
models
/
applicationContext.js
10 lines
(6 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
AppContext
=
function
(
routes
) {
this
.
routes
= routes; };
AppContext
.
prototype
.
routes
=
null
;
AppContext
.
prototype
.
publicDirectory
=
null
;
module
.
exports
=
AppContext
;