Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
chore: Update import paths to src directory
Browse files Browse the repository at this point in the history
  • Loading branch information
CCheukKa committed Jul 18, 2024
1 parent 9697d86 commit 75a3724
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { QueryDirectoryResponseBody } from './lib/ApiTypes';
import AuthHandler from './lib/AuthHandler';
import FileHandler, { RemoteResourceData } from './lib/FileHandler';
import PathArrayable, { PathArrayableType } from './lib/Path';
import { QueryDirectoryResponseBody } from './src/ApiTypes';
import AuthHandler from './src/AuthHandler';
import FileHandler, { RemoteResourceData } from './src/FileHandler';
import PathArrayable, { PathArrayableType } from './src/Path';

const noTokenError = new Error('No started session!');

Expand All @@ -22,7 +22,7 @@ export default class igemUploadToolApi {
*/
constructor(private teamNumber: number, private username: string, private password: string) { }

// ! public lib functions
// ! public src functions
/**
* Starts a new session by signing in the user with the provided username and password.
* Authenticates the session after signing in to confirm session token is valid.
Expand Down

0 comments on commit 75a3724

Please sign in to comment.