Skip to content

Commit ff7c23a

Browse files
committed
chore: refactor ai/lm tools prior to adding new tools
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent d687780 commit ff7c23a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/ecl/lm/tools.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as vscode from "vscode";
2-
import { FindLogicalFilesTool } from "./findLogicalFiles";
3-
import { SyntaxCheckTool } from "./syntaxCheck";
2+
import { FindLogicalFilesTool } from "./tools/findLogicalFiles";
3+
import { SyntaxCheckTool } from "./tools/syntaxCheck";
44

55
let eclLMTools: ECLLMTools;
66

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as vscode from "vscode";
2-
import { isPlatformConnected, sessionManager } from "../../hpccplatform/session";
3-
import { reporter } from "../../telemetry";
4-
import localize from "../../util/localize";
2+
import { isPlatformConnected, sessionManager } from "../../../hpccplatform/session";
3+
import { reporter } from "../../../telemetry";
4+
import localize from "../../../util/localize";
55

66
export interface IFindLogicalFilesParameters {
77
pattern: string;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as vscode from "vscode";
22
import * as os from "os";
3-
import { sessionManager } from "../../hpccplatform/session";
4-
import { reporter } from "../../telemetry";
5-
import localize from "../../util/localize";
3+
import { sessionManager } from "../../../hpccplatform/session";
4+
import { reporter } from "../../../telemetry";
5+
import localize from "../../../util/localize";
66

77
export interface ISyntaxCheckParameters {
88
ecl: string;

0 commit comments

Comments
 (0)