feat: file move and delete endpoint
This commit is contained in:
parent
8fbeda892b
commit
07d97a9091
4 changed files with 520 additions and 44 deletions
|
|
@ -42,17 +42,11 @@ const io = new Server(server, {
|
|||
});
|
||||
|
||||
setInstance(io);
|
||||
|
||||
io.on("connection", (socket) => {
|
||||
console.log("User Connected");
|
||||
|
||||
socket.on("disconnected", () => {
|
||||
console.log("User Disconnected");
|
||||
});
|
||||
});
|
||||
io.on("connection", () => console.log("[Socket.IO] User connected."));
|
||||
io.on("disconnected", () => console.log("[Socket.IO] User disconnected."));
|
||||
|
||||
server.listen(PORT, "0.0.0.0", () =>
|
||||
console.log(`[APP] Application is running on http://localhost:${PORT}`),
|
||||
);
|
||||
|
||||
rabbitmq.init(amqHandler).catch((e) => console.error(e));
|
||||
// rabbitmq.init(amqHandler).catch((e) => console.error(e));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue