feat: add name method for api

This commit is contained in:
Derrick Hammer 2023-07-28 23:48:24 -04:00
parent 809e0ecd3b
commit 7affb28081
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ export default abstract class NetworkClient extends Client {
return getNetworkModuleStatus(callback, undefined, this.connectModule);
}
public async name() {
return this.callModuleReturn("name");
}
public async ready() {
return this.callModuleReturn("ready");
}