Move authentication.ts to /common/vscode/authentication.ts

This commit is contained in:
Charis Kyriakou
2023-04-28 07:49:48 +00:00
parent 8500f20c2b
commit 4f1315aeae
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import * as vscode from "vscode";
import * as Octokit from "@octokit/rest";
import { retry } from "@octokit/plugin-retry";
import { Credentials } from "./common/authentication";
import { Credentials } from "../authentication";
const GITHUB_AUTH_PROVIDER_ID = "github";

View File

@@ -1,5 +1,5 @@
import * as vscode from "vscode";
import { VSCodeCredentials } from "../../authentication";
import { VSCodeCredentials } from "./authentication";
import { Disposable } from "../../pure/disposable-object";
import { App, AppMode } from "../app";
import { AppEventEmitter } from "../events";