mirror of
https://github.com/thelounge/thelounge
synced 2024-12-25 11:53:07 +00:00
9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
module.exports = Client;
|
|
|
|
function Client(attr) {
|
|
_.merge(this, _.extend({
|
|
name: "",
|
|
sockets: null,
|
|
networks: []
|
|
}, attr));
|
|
}
|