mirror of
https://github.com/fluencelabs/db-connector
synced 2025-04-24 20:32:13 +00:00
fix
This commit is contained in:
parent
91f5905810
commit
493612495f
@ -11,8 +11,8 @@ export function getStringInvoker(): StringInvoke {
|
||||
return new StringInvoke(api);
|
||||
}
|
||||
|
||||
let invoker = getStringInvoker();
|
||||
|
||||
export function query(request: string): string {
|
||||
return invoker.invoke(request);
|
||||
let stringInvoker = getStringInvoker();
|
||||
let result = stringInvoker.invoke(request);
|
||||
return result;
|
||||
}
|
||||
|
@ -11,8 +11,8 @@ export function getStringInvoker(): StringInvoke {
|
||||
return new StringInvoke(api);
|
||||
}
|
||||
|
||||
let invoker = getStringInvoker();
|
||||
|
||||
export function query(request: string): string {
|
||||
return invoker.invoke(request);
|
||||
let stringInvoker = getStringInvoker();
|
||||
let result = stringInvoker.invoke(request);
|
||||
return result;
|
||||
}
|
||||
|
@ -11,8 +11,8 @@ export function getStringInvoker(): StringInvoke {
|
||||
return new StringInvoke(api);
|
||||
}
|
||||
|
||||
let invoker = getStringInvoker();
|
||||
|
||||
export function query(request: string): string {
|
||||
return invoker.invoke(request);
|
||||
let stringInvoker = getStringInvoker();
|
||||
let result = stringInvoker.invoke(request);
|
||||
return result;
|
||||
}
|
||||
|
@ -11,8 +11,8 @@ export function getStringInvoker(): StringInvoke {
|
||||
return new StringInvoke(api);
|
||||
}
|
||||
|
||||
let invoker = getStringInvoker();
|
||||
|
||||
export function query(request: string): string {
|
||||
return invoker.invoke(request);
|
||||
let stringInvoker = getStringInvoker();
|
||||
let result = stringInvoker.invoke(request);
|
||||
return result;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user