mirror of
https://github.com/thelounge/thelounge
synced 2025-03-02 14:17:13 +00:00
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
"use strict";
|
|
|
|
import socket from "../socket";
|
|
import Auth from "../auth";
|
|
|
|
socket.on("sign-out", function () {
|
|
Auth.signout();
|
|
});
|