mirror of
https://github.com/sstent/alex_app1.git
synced 2026-01-26 09:02:38 +00:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
|
|
/**
|
|
* Export transports.
|
|
*/
|
|
|
|
module.exports = {
|
|
websocket: require('./websocket')
|
|
, flashsocket: require('./flashsocket')
|
|
, htmlfile: require('./htmlfile')
|
|
, 'xhr-polling': require('./xhr-polling')
|
|
, 'jsonp-polling': require('./jsonp-polling')
|
|
};
|