mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-01-09 07:48:06 +08:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
|
window.currentConnection = undefined;
|
||
|
|
||
|
export function setConn(conn) {
|
||
|
window.currentConnection = conn;
|
||
|
}
|
||
|
|
||
|
export function getConn() {
|
||
|
return windows.currentConnection;
|
||
|
}
|