Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
services
/
echo
/
File Content:
utils.ts
import { attachDebugger, createLogger } from '@grafana/ui'; export function loadScript(url: string, async = false) { return new Promise((resolve) => { const script = document.createElement('script'); script.onload = resolve; script.src = url; script.async = async; document.head.appendChild(script); }); } /** @internal */ export const echoLogger = createLogger('EchoSrv'); export const echoLog = echoLogger.logger; attachDebugger('echo', undefined, echoLogger);
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
backends
---
0755
Echo.ts
2323 bytes
0644
EchoSrv.ts
561 bytes
0644
utils.ts
490 bytes
0644
N4ST4R_ID | Naxtarrr