HttpApplication.js
10 lines
| 264 B
| application/javascript
|
JavascriptLexer
|
|
r0 | define([ | |
| "dojo/_base/declare", | |||
| "./BaseApplication", | |||
| "dojo/node!http" | |||
| ], function(declare, base, http) { | |||
| return declare(base, { | |||
| _createServer : function(options, handler) { | |||
| return http.createServer(handler); | |||
| } | |||
| }); | |||
| }); |
