File size: 211 Bytes
bc20498
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { Polling } from "./polling.js";
import { WS } from "./websocket.js";
import { WT } from "./webtransport.js";
export const transports = {
    websocket: WS,
    webtransport: WT,
    polling: Polling,
};