DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
393 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transports = void 0;
const polling_js_1 = require("./polling.js");
const websocket_js_1 = require("./websocket.js");
const webtransport_js_1 = require("./webtransport.js");
exports.transports = {
websocket: websocket_js_1.WS,
webtransport: webtransport_js_1.WT,
polling: polling_js_1.Polling,
};