mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-04-26 17:44:45 +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')
|
||
|
|
};
|