mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-06 04:21:14 +00:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
import { XHR } from "./polling-xhr.node.js";
|
|
import { WS } from "./websocket.node.js";
|
|
import { WT } from "./webtransport.js";
|
|
export const transports = {
|
|
websocket: WS,
|
|
webtransport: WT,
|
|
polling: XHR,
|
|
};
|