class Accounts { constructor (client) { this.client = client; } async create(username, password) { let response = await this.client._post("/api/accounts/register", {username: username, password: password}); return response } } export { Accounts }