chat functional
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
import { Account } from "./account.js";
|
||||
import { Profile } from "./profile.js";
|
||||
import { Profiles } from "./profiles.js";
|
||||
import { Channels } from './chat/channels.js';
|
||||
|
||||
function getCookie(name)
|
||||
{
|
||||
@ -20,6 +21,9 @@ class Client
|
||||
this.account = new Account(this);
|
||||
this.profiles = new Profiles(this);
|
||||
this._logged = undefined;
|
||||
|
||||
this.channels = new Channels(this);
|
||||
this.channel = undefined;
|
||||
}
|
||||
|
||||
async isAuthentificate()
|
||||
|
Reference in New Issue
Block a user