Skip to content

Commit

Permalink
DA#242: Added: Folder Structure Modified
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushTyagi1 committed Oct 17, 2023
1 parent 3acd04a commit 9e4cd37
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import * as vscode from "vscode";
import * as path from 'path';
import { IConnection } from "../../types/IConnection";
import { getActiveConnection } from "../../util/connections";
import { logger } from "../../logger/logger";
import { getLoader } from "../../webViews/loader.webview";
import { ddlExportWebview } from "../../webViews/tools/ddlExport.webview";
import { IConnection } from "../../../types/IConnection";
import { getActiveConnection } from "../../../util/connections";
import { logger } from "../../../logger/logger";
import { getLoader } from "../../../webViews/loader.webview";
import { ddlExportWebview } from "../../../webViews/tools/ddlExport.webview";
import { QueryIndex, ScopeSpec } from "couchbase";
import { getCurrentDateTime } from "../../util/util";
import { getCurrentDateTime } from "../../../util/util";
import * as fs from "fs";
import { getIndexDefinition } from "../../util/indexUtils";
import { getIndexDefinition } from "../../../util/indexUtils";

const validateFormData = (formData: any): string => {
const errors = [];
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ import { clearDocumentFilter } from "./commands/documents/clearDocumentFilter";
import { getClusterOverviewData } from "./util/OverviewClusterUtils/getOverviewClusterData";
import { checkAndCreatePrimaryIndex } from "./commands/indexes/checkAndCreatePrimaryIndex";
import { dataExport } from "./pages/Tools/DataExport/dataExport";
import { ddlExport } from "./commands/export/ddlExport";
import { ddlExport } from "./commands/tools/ddlExport/ddlExport";

export function activate(context: vscode.ExtensionContext) {
Global.setState(context.globalState);
Expand Down

0 comments on commit 9e4cd37

Please sign in to comment.