add: profiles.all()

This commit is contained in:
2023-12-08 17:36:41 +01:00
parent 54afa8aae5
commit 0edcd97f94
6 changed files with 37 additions and 4 deletions

View File

@ -1,5 +1,6 @@
import { Account } from "./account.js";
import { Profile } from "./profile.js";
import { Profiles } from "./profiles.js";
function getCookie(name)
{
@ -17,6 +18,7 @@ class Client
{
this._url = url;
this.account = new Account(this);
this.profiles = new Profiles(this);
this._logged = undefined;
}