feat: add name method for api
This commit is contained in:
parent
809e0ecd3b
commit
7affb28081
|
@ -10,6 +10,10 @@ export default abstract class NetworkClient extends Client {
|
||||||
return getNetworkModuleStatus(callback, undefined, this.connectModule);
|
return getNetworkModuleStatus(callback, undefined, this.connectModule);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async name() {
|
||||||
|
return this.callModuleReturn("name");
|
||||||
|
}
|
||||||
|
|
||||||
public async ready() {
|
public async ready() {
|
||||||
return this.callModuleReturn("ready");
|
return this.callModuleReturn("ready");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue