mirror of
https://github.com/thelounge/thelounge
synced 2024-12-24 11:23:07 +00:00
13 lines
204 B
JavaScript
13 lines
204 B
JavaScript
var _ = require("lodash");
|
|
|
|
module.exports = Chan;
|
|
|
|
function Chan(attr) {
|
|
_.merge(this, _.extend({
|
|
id: global.id = ++global.id || 1,
|
|
name: "",
|
|
type: "",
|
|
messages: [],
|
|
users: [],
|
|
}, attr));
|
|
};
|