mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-19 15:30:27 +00:00
7 lines
261 B
JavaScript
7 lines
261 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' )
|
|
};
|