A bot used for https://code-your-snake.codingmaster398.repl.co/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
296 B
9 lines
296 B
"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");
|
|
exports.transports = {
|
|
websocket: websocket_js_1.WS,
|
|
polling: polling_js_1.Polling
|
|
};
|
|
|