MCPcopy Create free account
hub / github.com/microsoft/AI-Engineering-Coach / loadPanelModule

Function loadPanelModule

src/extension.ts:32–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30type PanelModule = typeof import('./webview/panel');
31let panelModulePromise: Promise<PanelModule> | null = null;
32function loadPanelModule(): Promise<PanelModule> {
33 if (!panelModulePromise) panelModulePromise = import('./webview/panel');
34 return panelModulePromise;
35}
36
37async function exportSummaryFromLogs(): Promise<void> {
38 const dirs = findLogsDirs();

Callers 2

promptAndReloadFunction · 0.85
activateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected