fix: queryDns needs to be dnsQuery

This commit is contained in:
Derrick Hammer 2023-08-02 18:02:05 -04:00
parent f793448e52
commit 1558d458cc
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ export class HandshakeClient extends NetworkClient {
public async query(method: string, params: any): Promise<Response> {
return this.callModuleReturn("query", { method, params });
}
public async queryDns(fqdn: string, type: string): Promise<Response> {
return this.callModuleReturn("queryDns", { fqdn, type });
public async dnsQuery(fqdn: string, type: string): Promise<Response> {
return this.callModuleReturn("dnsQuery", { fqdn, type });
}
}