mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 20:13:07 +00:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
import constants from "../constants";
|
|
import socket from "../socket";
|
|
|
|
socket.on("commands", function(commands) {
|
|
if (commands) {
|
|
constants.commands = commands;
|
|
}
|
|
});
|