This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/client/js/socket-events/commands.js

9 lines
177 B
JavaScript
Raw Normal View History

const constants = require("../constants");
import socket from "../socket";
socket.on("commands", function (commands) {
if (commands) {
constants.commands = commands;
}
});