mirror of
https://github.com/thelounge/thelounge
synced 2025-02-16 21:28:23 +00:00
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import constants from "../constants";
|
|
import socket from "../socket";
|
|
|
|
socket.on("commands", function (commands) {
|
|
if (commands) {
|
|
constants.commands = commands;
|
|
}
|
|
});
|