Skip to content

Commit

Permalink
refactor: update import path
Browse files Browse the repository at this point in the history
  • Loading branch information
waynewaynetsai committed Jun 9, 2022
1 parent 1ff999f commit 1bceeef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'reflect-metadata';
import * as vscode from 'vscode';
import { logger } from './logger';
import { Library } from './library';
import { Instantiator } from './instantiator';
import { Instantiator } from './instance';
import { registerReloadCommand, registerWorkspaceChangeEvent } from './registry';

export async function activate(context: vscode.ExtensionContext) {
Expand Down
2 changes: 1 addition & 1 deletion src/library/versions/version-1.0.0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { commandQuickpick, CommandRegistry } from "../../registry";
import { confirm, dropdown, input } from "../../interactive";
import { execCmd, execShell, invokeCommands, runAutomation, runCommands, runMacro, spawnShell, type, typeCharUnderCursor, typeKeys, writeText } from '../../command';
import { copyFileOrFolder, createNewFile, createNewFolder, findFirstOccurCharAboveCursor, findFirstOccurCharAtLine, getCharAt, getCharUnderCursor, getCurrentLine, getCurrentWorkspaceFolder, getCursorPosition, getFirstCharOnLine, getLine, getSelectedText, setCursorPosition, switchToInsertModeSelection } from '../../editor';
import { Instantiator } from '../../instantiator';
import { Instantiator } from '../../instance/instantiator';

export const getLib = async () => {
const registry = await Instantiator.container.getAsync<CommandRegistry>(CommandRegistry);
Expand Down

0 comments on commit 1bceeef

Please sign in to comment.