Skip to content

Commit

Permalink
Added dedicated controllers folder
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Aug 20, 2024
1 parent 133527f commit bc95b80
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ import {
Toaster,
updateConnectionStatusBarItem,
} from '../util';
import { RunCommandCodeLensProvider } from './RunCommandCodeLensProvider';
import { DhServiceRegistry } from './DhServiceRegistry';
import { DhService } from './DhService';
import { DhcService } from './DhcService';
import { Config } from './Config';

import {
Config,
DhServiceRegistry,
DhService,
DhcService,
RunCommandCodeLensProvider,
} from '../services';
const logger = new Logger('ExtensionController');

export class ExtensionController implements Disposable {
Expand Down
1 change: 1 addition & 0 deletions src/controllers/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './ExtensionController';
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { ExtensionController } from './services';
import { ExtensionController } from './controllers';

export function activate(context: vscode.ExtensionContext): void {
const controller = new ExtensionController(context);
Expand Down
1 change: 0 additions & 1 deletion src/services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ export * from './Config';
export * from './DhService';
export * from './DhcService';
export * from './DhServiceRegistry';
export * from './ExtensionController';
export * from './RunCommandCodeLensProvider';

0 comments on commit bc95b80

Please sign in to comment.